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

Side by Side Diff: sky/examples/fn/lib/fn.dart

Issue 971183002: Initial commit of Effen reactive framework experiment for Sky (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « sky/examples/fn/lib/fakesky.dart ('k') | sky/examples/fn/lib/node.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 library fn;
2
3 import 'dart:async';
4 import 'dart:collection';
5 import 'dart:sky' as sky;
6 import 'reflect.dart' as reflect;
7
8 part 'component.dart';
9 part 'node.dart';
10 part 'style.dart';
11
12 bool _checkedMode;
13
14 bool debugWarnings() {
15 void testFn(double i) {}
16
17 if (_checkedMode == null) {
18 _checkedMode = false;
19 try {
20 testFn('not a double');
21 } catch (ex) {
22 _checkedMode = true;
23 }
24 }
25
26 return _checkedMode;
27 }
OLDNEW
« no previous file with comments | « sky/examples/fn/lib/fakesky.dart ('k') | sky/examples/fn/lib/node.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698