- created tests for AS comments (which seem to be parsed out by the compiler, so nothing much to test... yet?)
git-svn-id: https://svn.apache.org/repos/asf/flex/whiteboard@1431314 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/mschmalle/falconjx/compiler.jx.tests/src/org/apache/flex/compiler/internal/as/codegen/TestComments.java b/mschmalle/falconjx/compiler.jx.tests/src/org/apache/flex/compiler/internal/as/codegen/TestComments.java
new file mode 100644
index 0000000..61b65a6
--- /dev/null
+++ b/mschmalle/falconjx/compiler.jx.tests/src/org/apache/flex/compiler/internal/as/codegen/TestComments.java
@@ -0,0 +1,87 @@
+/*
+ *
+ * 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.flex.compiler.internal.as.codegen;
+
+import org.apache.flex.compiler.tree.as.IFileNode;
+import org.apache.flex.compiler.tree.as.IFunctionNode;
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ * @author Erik de Bruin
+ */
+public class TestComments extends TestWalkerBase
+{
+ // TODO (erikdebruin/mschmalle) why aren't comments preserved?
+
+ @Ignore
+ @Test
+ public void testComment_SingleLine()
+ {
+ IFunctionNode node = getMethod("function a():void {// single line comment};");
+ visitor.visitFunction(node);
+ assertOut("function a():void {\n\t// single line comment\n}");
+ }
+
+ @Ignore
+ @Test
+ public void testComment_SingleLine_After()
+ {
+ IFunctionNode node = getMethod("function a():void {var a:String = ''; // single line comment};");
+ visitor.visitFunction(node);
+ assertOut("function a():void {\n\tvar a:String = ''; // single line comment\n}");
+ }
+
+ @Ignore
+ @Test
+ public void testComment_MultiLine()
+ {
+ IFunctionNode node = getMethod("function a():void {/*first line comment\nsecond line comment*/};");
+ visitor.visitFunction(node);
+ assertOut("function a():void {\n\t/*first line comment\n\tsecond line comment*/\n}");
+ }
+
+ @Ignore
+ @Test
+ public void testComment_InLine()
+ {
+ IFunctionNode node = getMethod("function a():void {var a:String /* inline comment */ = 'Hello world';};");
+ visitor.visitFunction(node);
+ assertOut("function a():void {\n\tvar a:String /* inline comment */ = 'Hello world';\n}");
+ }
+
+ @Ignore
+ @Test
+ public void testComment_ASDoc()
+ {
+ IFunctionNode node = getMethod("function a():void {/**\n * line comment\n */};");
+ visitor.visitFunction(node);
+ assertOut("function a():void {\n\t/**\n\t * line comment\n\t */};");
+ }
+
+ protected IFunctionNode getMethod(String code)
+ {
+ String source = "package {public class A {" + code + "}}";
+ IFileNode node = getFileNode(source);
+ IFunctionNode child = (IFunctionNode) findFirstDescendantOfType(node,
+ IFunctionNode.class);
+ return child;
+ }
+}
diff --git a/mschmalle/falconjx/compiler.jx.tests/src/org/apache/flex/compiler/internal/js/codegen/goog/TestGoogComments.java b/mschmalle/falconjx/compiler.jx.tests/src/org/apache/flex/compiler/internal/js/codegen/goog/TestGoogComments.java
new file mode 100644
index 0000000..4e793cb
--- /dev/null
+++ b/mschmalle/falconjx/compiler.jx.tests/src/org/apache/flex/compiler/internal/js/codegen/goog/TestGoogComments.java
@@ -0,0 +1,39 @@
+/*
+ *
+ * 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.flex.compiler.internal.js.codegen.goog;
+
+import org.apache.flex.compiler.clients.IBackend;
+import org.apache.flex.compiler.internal.as.codegen.TestComments;
+import org.apache.flex.compiler.internal.js.driver.goog.GoogBackend;
+
+/**
+ * @author Erik de Bruin
+ */
+public class TestGoogComments extends TestComments
+{
+ // TODO (erikdebruin) if comments aren't preserved in the base tests
+ // we can't test the 'goog' equivalents
+
+ @Override
+ protected IBackend createBackend()
+ {
+ return new GoogBackend();
+ }
+}