File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1- import { DOM } from '. /dom' ;
1+ import { DOM } from 'facade /dom' ;
22export class App {
3- @field ( 'input:Element' )
43 constructor ( ) {
54 this . input = null ;
65 this . list = null ;
Original file line number Diff line number Diff line change 99 < script src ="main.dart " type ="application/dart "> </ script >
1010 < % } else { %>
1111 < script src ="../../../traceur-runtime.js " type ="text/javascript "> </ script >
12- < script src ="../../../assert .js " type ="text/javascript "> </ script >
12+ < script src ="../../../rtts_assert/lib/rtts_assert .js " type ="text/javascript "> </ script >
1313
1414 < script src ="app.js " type ="text/javascript "> </ script >
15- < script src ="dom.js " type ="text/javascript "> </ script >
15+ < script src ="../../../facade/lib/ dom.js " type ="text/javascript "> </ script >
1616
17- < script src ="main.js "> </ script >
17+ < script src ="main.es5 " type =" text/javascript "> </ script >
1818 < % } %>
1919</ body >
2020</ html >
Original file line number Diff line number Diff line change 1+ new (System.get("examples/todo/app").App)().run();
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,4 +5,10 @@ export var afterEach = window.afterEach;
55export var expect = window . expect ;
66
77// To make testing consistent between dart and js
8- window . print = window . dump || window . console . log ;
8+ window . print = function ( msg ) {
9+ if ( window . dump ) {
10+ window . dump ( msg ) ;
11+ } else {
12+ window . console . log ( msg ) ;
13+ }
14+ } ;
You can’t perform that action at this time.
0 commit comments