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

Side by Side Diff: pkg/smoke/test/static_test.dart

Issue 208583003: Fix string literals and add support for static methods in smoke. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: minor fix - inlcude name for static method too Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/smoke/test/common.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /// ---- AUTOGENERATED: DO NOT EDIT THIS FILE -------------- 1 /// ---- AUTOGENERATED: DO NOT EDIT THIS FILE --------------
2 /// To update this test file, call: 2 /// To update this test file, call:
3 /// > dart codegen/end_to_end_test.dart --update_static_test 3 /// > dart codegen/end_to_end_test.dart --update_static_test
4 /// -------------------------------------------------------- 4 /// --------------------------------------------------------
5 5
6 library smoke.test.static_test; 6 library smoke.test.static_test;
7 7
8 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
9 import 'package:smoke/smoke.dart' show Declaration, PROPERTY, METHOD; 9 import 'package:smoke/smoke.dart' show Declaration, PROPERTY, METHOD;
10 import 'package:smoke/static.dart' show useGeneratedCode, StaticConfiguration; 10 import 'package:smoke/static.dart' show useGeneratedCode, StaticConfiguration;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 #i: const Declaration(#i, int, annotations: const [smoke_0.a3]), 80 #i: const Declaration(#i, int, annotations: const [smoke_0.a3]),
81 }, 81 },
82 _M0: { 82 _M0: {
83 #i: const Declaration(#i, int), 83 #i: const Declaration(#i, int),
84 #inc: const Declaration(#inc, Function, kind: METHOD), 84 #inc: const Declaration(#inc, Function, kind: METHOD),
85 #inc0: const Declaration(#inc0, Function, kind: METHOD), 85 #inc0: const Declaration(#inc0, Function, kind: METHOD),
86 #j: const Declaration(#j, int), 86 #j: const Declaration(#j, int),
87 #j2: const Declaration(#j2, int, kind: PROPERTY), 87 #j2: const Declaration(#j2, int, kind: PROPERTY),
88 }, 88 },
89 }, 89 },
90 staticMethods: {
91 smoke_0.A: {
92 #staticInc: smoke_0.A.staticInc,
93 },
94 },
90 names: { 95 names: {
91 #i: 'i', 96 #i: r'i',
92 })); 97 }));
93 } 98 }
94 99
95 main() { 100 main() {
96 setUp(_configure); 101 setUp(_configure);
97 common.main(); 102 common.main();
98 } 103 }
OLDNEW
« no previous file with comments | « pkg/smoke/test/common.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698