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

Unified Diff: test/codegen/expect/expect/expect.js

Issue 1483813002: Use const for const/final top-levels, types, symbols. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Rebased after vsm's regen Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/expect/expect.js ('k') | test/codegen/expect/fieldtest.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/expect/expect.js
diff --git a/test/codegen/expect/expect/expect.js b/test/codegen/expect/expect/expect.js
index 905bc653a924b0590a0826cdbd142f1a6b1c8b05..5fb05a3f78c4759124426560739d8dba0ec4db90 100644
--- a/test/codegen/expect/expect/expect.js
+++ b/test/codegen/expect/expect/expect.js
@@ -297,8 +297,8 @@ dart_library.library('expect/expect', null, /* Imports */[
return core.identical(a, b);
}
dart.fn(_identical, core.bool, [dart.dynamic, dart.dynamic]);
- let _CheckExceptionFn = dart.typedef('_CheckExceptionFn', () => dart.functionType(core.bool, [dart.dynamic]));
- let _Nullary = dart.typedef('_Nullary', () => dart.functionType(dart.dynamic, []));
+ const _CheckExceptionFn = dart.typedef('_CheckExceptionFn', () => dart.functionType(core.bool, [dart.dynamic]));
+ const _Nullary = dart.typedef('_Nullary', () => dart.functionType(dart.dynamic, []));
class ExpectException extends core.Object {
ExpectException(message) {
this.message = message;
« no previous file with comments | « test/codegen/expect/expect.js ('k') | test/codegen/expect/fieldtest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698