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

Side by Side Diff: third_party/pkg/angular/test/jasmine_syntax.dart

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 library jasmine; 1 library jamine;
2 2
3 import 'package:unittest/unittest.dart' as unit; 3 import 'package:unittest/unittest.dart' as unit;
4 import 'package:angular/utils.dart' as utils; 4 import 'package:angular/utils.dart' as utils;
5 5
6 Function _wrapFn; 6 Function _wrapFn;
7 7
8 _maybeWrapFn(fn) => () { 8 _maybeWrapFn(fn) => () {
9 if (_wrapFn != null) { 9 if (_wrapFn != null) {
10 _wrapFn(fn)(); 10 _wrapFn(fn)();
11 } else { 11 } else {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 144
145 SpyFunction spyOn(receiver, methodName) { 145 SpyFunction spyOn(receiver, methodName) {
146 throw ["spyOn not implemented"]; 146 throw ["spyOn not implemented"];
147 } 147 }
148 } 148 }
149 149
150 main(){ 150 main(){
151 unit.setUp(currentDescribe.setUp); 151 unit.setUp(currentDescribe.setUp);
152 unit.tearDown(currentDescribe.tearDown); 152 unit.tearDown(currentDescribe.tearDown);
153 } 153 }
OLDNEW
« no previous file with comments | « third_party/pkg/angular/test/io/test_files/templates/main.dart ('k') | third_party/pkg/angular/test/mock/test_bed_spec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698