Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: test/transformer_test.dart

Issue 951463004: support more types of expressions (Closed) Base URL: git@github.com:dart-lang/static-init.git@master
Patch Set: support PropertyAccess expressions Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/transformer_test.dart
diff --git a/test/transformer_test.dart b/test/transformer_test.dart
index 12e32598bc594aa0cb9ac468cdad074d8f39e614..e90eefc2a93aba8d42848d2a61371c1673f7a065 100644
--- a/test/transformer_test.dart
+++ b/test/transformer_test.dart
@@ -117,6 +117,8 @@ void dartEntryPointTests() {
'a|web/index.dart': '''
@DynamicInit(foo)
@DynamicInit(Foo.foo)
+ @DynamicInit(bar.Foo.bar)
+ @DynamicInit(bar.Foo.foo)
@DynamicInit(const [foo, Foo.foo, 'foo'])
@DynamicInit(const {'foo': foo, 'Foo.foo': Foo.foo, 'bar': 'bar'})
@DynamicInit('foo')
@@ -124,19 +126,36 @@ void dartEntryPointTests() {
@DynamicInit(null)
@DynamicInit(1)
@DynamicInit(1.1)
+ @DynamicInit('foo-\$x\${y}')
+ @DynamicInit(1 + 2)
+ @DynamicInit(1.0 + 0.2)
+ @DynamicInit(1 == 1)
@NamedArgInit(1, name: 'Bill')
library web_foo;
import 'package:test_initializers/common.dart';
import 'foo.dart';
+ import 'foo.dart' as bar;
+
+ const x = 'x';
+ const y = 'y';
+
+ class MyConst {
+ const MyConst;
+ }
''',
'a|web/foo.dart': '''
library foo;
const String foo = 'foo';
+ class Bar {
+ const Bar();
+ }
+
class Foo {
static foo = 'Foo.foo';
+ static bar = const Bar();
}
''',
// Mock out the Initialize package plus some initializers.
@@ -154,6 +173,8 @@ void dartEntryPointTests() {
initializers.addAll([
new InitEntry(const i1.DynamicInit(i2.foo), const LibraryIdentifier(#web_foo, null, 'index.dart')),
new InitEntry(const i1.DynamicInit(i2.Foo.foo), const LibraryIdentifier(#web_foo, null, 'index.dart')),
+ new InitEntry(const i1.DynamicInit(i2.Foo.bar), const LibraryIdentifier(#web_foo, null, 'index.dart')),
+ new InitEntry(const i1.DynamicInit(i2.Foo.foo), const LibraryIdentifier(#web_foo, null, 'index.dart')),
new InitEntry(const i1.DynamicInit(const [i2.foo, i2.Foo.foo, 'foo']), const LibraryIdentifier(#web_foo, null, 'index.dart')),
new InitEntry(const i1.DynamicInit(const {'foo': i2.foo, 'Foo.foo': i2.Foo.foo, 'bar': 'bar'}), const LibraryIdentifier(#web_foo, null, 'index.dart')),
new InitEntry(const i1.DynamicInit('foo'), const LibraryIdentifier(#web_foo, null, 'index.dart')),
@@ -161,6 +182,10 @@ void dartEntryPointTests() {
new InitEntry(const i1.DynamicInit(null), const LibraryIdentifier(#web_foo, null, 'index.dart')),
new InitEntry(const i1.DynamicInit(1), const LibraryIdentifier(#web_foo, null, 'index.dart')),
new InitEntry(const i1.DynamicInit(1.1), const LibraryIdentifier(#web_foo, null, 'index.dart')),
+ new InitEntry(const i1.DynamicInit('foo-xy'), const LibraryIdentifier(#web_foo, null, 'index.dart')),
+ new InitEntry(const i1.DynamicInit(3), const LibraryIdentifier(#web_foo, null, 'index.dart')),
+ new InitEntry(const i1.DynamicInit(1.2), const LibraryIdentifier(#web_foo, null, 'index.dart')),
+ new InitEntry(const i1.DynamicInit(true), const LibraryIdentifier(#web_foo, null, 'index.dart')),
new InitEntry(const i1.NamedArgInit(1, name: 'Bill'), const LibraryIdentifier(#web_foo, null, 'index.dart')),
]);
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698