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

Side by Side Diff: test/data/input/main_code_in_dart_file.dart

Issue 12225039: Support for observable models, fixes #259 (Closed) Base URL: https://github.com/dart-lang/web-ui.git@master
Patch Set: Created 7 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 unified diff | Download patch
« no previous file with comments | « test/data/input/list_test.html ('k') | test/data/input/mix_iterate_if_test.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library main; 1 library main;
2 2
3 import 'dart:html'; 3 import 'dart:html';
4 import 'package:web_ui/watcher.dart'; 4 import 'package:web_ui/observe.dart';
5 import 'common.dart'; 5 import 'common.dart';
6 6
7 main() { 7 main() {
8 topLevelVar = "hello"; 8 topLevelVar = "hello";
9 dispatch(); 9 window.setImmediate(() => window.postMessage('done', '*'));
10 window.setTimeout(() => window.postMessage('done', '*'), 0);
11 } 10 }
12 11
OLDNEW
« no previous file with comments | « test/data/input/list_test.html ('k') | test/data/input/mix_iterate_if_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698