| Index: tests/compiler/dart2js/unparser_test.dart
|
| diff --git a/tests/compiler/dart2js/unparser_test.dart b/tests/compiler/dart2js/unparser_test.dart
|
| index d470b3f988f68da2a5ae54d768b8606ed47800b0..38e9bdba37acc1289ab241191c3b92570aed0f06 100644
|
| --- a/tests/compiler/dart2js/unparser_test.dart
|
| +++ b/tests/compiler/dart2js/unparser_test.dart
|
| @@ -341,6 +341,28 @@ testParameters() {
|
| ]);
|
| }
|
|
|
| +testSymbolLiterals() {
|
| + testUnparse("#+;");
|
| + testUnparse("#-;");
|
| + testUnparse("#*;");
|
| + testUnparse("#/;");
|
| + testUnparse("#~/;");
|
| + testUnparse("#%;");
|
| + testUnparse("#<;");
|
| + testUnparse("#<=;");
|
| + testUnparse("#>;");
|
| + testUnparse("#>=;");
|
| + testUnparse("#==;");
|
| + testUnparse("#&;");
|
| + testUnparse("#|;");
|
| + testUnparse("#^;");
|
| +
|
| + testUnparse("#a;");
|
| + testUnparse("#a.b;");
|
| + testUnparse("#a.b.c;");
|
| + testUnparse("#aa.bb.cc.dd;");
|
| +}
|
| +
|
| main() {
|
| testSignedConstants();
|
| testGenericTypes();
|
| @@ -362,4 +384,5 @@ main() {
|
| testClassDeclarations();
|
| testMixinApplications();
|
| testParameters();
|
| + testSymbolLiterals();
|
| }
|
|
|