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

Unified Diff: test/codegen/temps.dart

Issue 1230903002: fixes #6, refactor to use AnalysisError/Listener throughout dev_compiler (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 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 | « test/codegen/expect/temps.txt ('k') | test/report_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/temps.dart
diff --git a/test/codegen/temps.dart b/test/codegen/temps.dart
index cb63c0a6cf3b914cd538afad949df0fa28cc402a..cedd38bb0ee9dfff97a10f63bff496647766a728 100644
--- a/test/codegen/temps.dart
+++ b/test/codegen/temps.dart
@@ -11,9 +11,9 @@ class FormalCollision {
}
class OptionalArg {
- int _opt;
+ int opt, _opt;
OptionalArg([this._opt = 123]);
- OptionalArg.named({this._opt: 456});
+ OptionalArg.named({this.opt: 456});
}
main() {
« no previous file with comments | « test/codegen/expect/temps.txt ('k') | test/report_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698