| Index: compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
|
| index 5b4ab919fcf3fd88805102ca36d7190e31d05e6e..cc91370e8fbdeb37430f4c3d5f277186b4fe2d09 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
|
| @@ -83,6 +83,21 @@ public class SyntaxTest extends AbstractParserTest {
|
| ""),
|
| ParserErrorCode.EXPECTED_TOKEN, 3, 12);
|
| }
|
| +
|
| + /**
|
| + * <p>
|
| + * http://code.google.com/p/dart/issues/detail?id=6825
|
| + */
|
| + public void test_annotation_forExport() {
|
| + parseUnit(
|
| + "test.dart",
|
| + Joiner.on("\n").join(
|
| + "// filler filler filler filler filler filler filler filler filler filler",
|
| + "library Test;",
|
| + "",
|
| + "@meta @meta2 export 'Lib.dart';",
|
| + ""));
|
| + }
|
|
|
| public void test_getter() {
|
| parseUnit("getter.dart", Joiner.on("\n").join(
|
|
|