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

Side by Side Diff: lib/runtime/dart_core.js

Issue 1002443002: minor code cleanup (Closed) Base URL: git@github.com:dart-lang/dart-dev-compiler.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 | « no previous file | lib/runtime/dart_runtime.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 var dart_core; 5 var dart_core;
6 (function (dart_core) { 6 (function (dart_core) {
7 var Object = (function () { 7 var Object = (function () {
8 var constructor = function Object() {}; 8 var constructor = function Object() {};
9 9
10 constructor.prototype.toString = function toString() { 10 constructor.prototype.toString = function toString() {
(...skipping 29 matching lines...) Expand all
40 return NoSuchMethodError; 40 return NoSuchMethodError;
41 })(); 41 })();
42 dart_core.NoSuchMethodError = NoSuchMethodError; 42 dart_core.NoSuchMethodError = NoSuchMethodError;
43 43
44 // Class UnimplementedError 44 // Class UnimplementedError
45 var UnimplementedError = (function () { 45 var UnimplementedError = (function () {
46 // TODO(vsm): Implement. 46 // TODO(vsm): Implement.
47 function UnimplementedError(message) { 47 function UnimplementedError(message) {
48 this.message = (message != void 0) ? message : null; 48 this.message = (message != void 0) ? message : null;
49 } 49 }
50 return NoSuchMethodError; 50 return UnimplementedError;
51 })(); 51 })();
52 dart_core.UnimplementedError = UnimplementedError; 52 dart_core.UnimplementedError = UnimplementedError;
53 })(dart_core || (dart_core = {})); 53 })(dart_core || (dart_core = {}));
OLDNEW
« no previous file with comments | « no previous file | lib/runtime/dart_runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698