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

Side by Side Diff: bin/build_observable.dart

Issue 12096106: work in progress: observable implementation using detailed change records (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 | « no previous file | example/todomvc/main.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import 'dart:uri';
2 import 'package:web_ui/src/observable_emitter.dart';
3 import 'package:web_ui/src/messages.dart';
4 import 'package:compiler_unsupported/implementation/tree/tree.dart';
5
6 main() {
7 messages = new Messages();
8 var transformed = transformObservables('foo.dart', r'''
9 @observable
10 class Foo {
11 String bar = 123, baz;
12 var quux;
13 final notMutable;
14 const notMutableAlso;
15 String get notAField => bar;
16 }
17 ''');
18 print(transformed);
19 }
OLDNEW
« no previous file with comments | « no previous file | example/todomvc/main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698