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

Unified Diff: test/codegen/expect/collection/algorithms.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/closure.js ('k') | test/codegen/expect/collection/iterable_zip.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/collection/algorithms.js
diff --git a/test/codegen/expect/collection/algorithms.js b/test/codegen/expect/collection/algorithms.js
index 7996c7a1b42e6cee7ae1c083d44e6d62e3f2967d..dd35473bd345c0179bf4df333fe78afbd3482c5e 100644
--- a/test/codegen/expect/collection/algorithms.js
+++ b/test/codegen/expect/collection/algorithms.js
@@ -112,7 +112,7 @@ dart_library.library('collection/algorithms', null, /* Imports */[
}
}
dart.fn(_insertionSort, dart.void, [core.List, dart.functionType(core.int, [dart.dynamic, dart.dynamic]), core.int, core.int, core.int]);
- let _MERGE_SORT_LIMIT = 32;
+ const _MERGE_SORT_LIMIT = 32;
function mergeSort(list, opts) {
let start = opts && 'start' in opts ? opts.start : 0;
let end = opts && 'end' in opts ? opts.end : null;
« no previous file with comments | « test/codegen/expect/closure.js ('k') | test/codegen/expect/collection/iterable_zip.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698