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

Unified Diff: test/codegen/expect/collection/src/queue_list.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
Index: test/codegen/expect/collection/src/queue_list.js
diff --git a/test/codegen/expect/collection/src/queue_list.js b/test/codegen/expect/collection/src/queue_list.js
index 7ec102ea9528a3990a53d43a6d114674e652c840..d372d950fa652576d18bb51152b89193bf03d391 100644
--- a/test/codegen/expect/collection/src/queue_list.js
+++ b/test/codegen/expect/collection/src/queue_list.js
@@ -6,14 +6,14 @@ dart_library.library('collection/src/queue_list', null, /* Imports */[
], function(exports, dart, core, collection) {
'use strict';
let dartx = dart.dartx;
- let _head = Symbol('_head');
- let _tail = Symbol('_tail');
- let _table = Symbol('_table');
- let _add = Symbol('_add');
- let _preGrow = Symbol('_preGrow');
- let _grow = Symbol('_grow');
- let _writeToList = Symbol('_writeToList');
- let QueueList$ = dart.generic(function(E) {
+ const _head = Symbol('_head');
+ const _tail = Symbol('_tail');
+ const _table = Symbol('_table');
+ const _add = Symbol('_add');
+ const _preGrow = Symbol('_preGrow');
+ const _grow = Symbol('_grow');
+ const _writeToList = Symbol('_writeToList');
+ const QueueList$ = dart.generic(function(E) {
class QueueList extends dart.mixin(core.Object, collection.ListMixin$(E)) {
QueueList(initialCapacity) {
if (initialCapacity === void 0)
« no previous file with comments | « test/codegen/expect/collection/src/canonicalized_map.js ('k') | test/codegen/expect/collection/src/unmodifiable_wrappers.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698