blob: 6416831e5fa552797d8049c71d52e246ec07ac8f [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.royale.compiler.internal.codegen.mxml.sourcemaps;
import org.apache.royale.compiler.definitions.IClassDefinition;
import org.apache.royale.compiler.internal.codegen.js.royale.JSRoyaleEmitter;
import org.apache.royale.compiler.internal.test.RoyaleSourceMapTestBase;
import org.apache.royale.compiler.tree.as.IFunctionNode;
import org.apache.royale.compiler.tree.as.IVariableNode;
import org.apache.royale.compiler.tree.mxml.IMXMLDocumentNode;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
public class TestSourceMapMXMLScript extends RoyaleSourceMapTestBase
{
@Test
public void testField()
{
String code = "var foo;";
IVariableNode node = (IVariableNode) getASNode(code, IVariableNode.class);
IMXMLDocumentNode dnode = (IMXMLDocumentNode) node
.getAncestorOfType(IMXMLDocumentNode.class);
IClassDefinition definition = dnode.getClassDefinition();
((JSRoyaleEmitter)(mxmlBlockWalker.getASEmitter())).getModel().setCurrentClass(definition);
mxmlBlockWalker.visitDocument(dnode);
String definitionName = definition.getQualifiedName();
assertTrue(definitionName.startsWith(getClass().getSimpleName()));
int endColumn = definitionName.length() + 14;
///**\n * @package\n * @type {*}\n */\nRoyaleTest_A.prototype.foo
assertMapping(node, 0, 4, 43, 0, 43, endColumn); // foo
}
@Test
public void testMethod()
{
String code = "function foo(){};";
IFunctionNode node = (IFunctionNode) getASNode(code, IFunctionNode.class);
IMXMLDocumentNode dnode = (IMXMLDocumentNode) node
.getAncestorOfType(IMXMLDocumentNode.class);
IClassDefinition definition = dnode.getClassDefinition();
((JSRoyaleEmitter)(mxmlBlockWalker.getASEmitter())).getModel().setCurrentClass(definition);
mxmlBlockWalker.visitDocument(dnode);
String definitionName = definition.getQualifiedName();
assertTrue(definitionName.startsWith(getClass().getSimpleName()));
int nameEndColumn = definitionName.length() + 14;
///**\n * @export\n * @type {*}\n */\nRoyaleTest_A.prototype.foo
assertMapping(node, 0, 9, 39, 0, 39, nameEndColumn); // foo
assertMapping(node, 0, 0, 39, nameEndColumn, 39, nameEndColumn + 11); // = function
assertMapping(node, 0, 12, 39, nameEndColumn + 11, 39, nameEndColumn + 12); // (
assertMapping(node, 0, 13, 39, nameEndColumn + 12, 39, nameEndColumn + 13); // )
assertMapping(node, 0, 14, 39, nameEndColumn + 14, 39, nameEndColumn + 15); // {
assertMapping(node, 0, 15, 40, 0, 40, 1); // }
}
}