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

Unified Diff: tests/compiler/dart2js/token_naming_test.dart

Issue 1212613009: dart2js: Implement frequency based naming. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Reserve reserved names :) Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/js_ast/lib/src/printer.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/token_naming_test.dart
diff --git a/tests/compiler/dart2js/token_naming_test.dart b/tests/compiler/dart2js/token_naming_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..7f99d5ee6cdb7b4f84995f22f95e3597fae5ef5a
--- /dev/null
+++ b/tests/compiler/dart2js/token_naming_test.dart
@@ -0,0 +1,63 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import "package:compiler/src/js_backend/js_backend.dart" show TokenScope;
+
+import "package:expect/expect.dart";
+
+String forwardN(TokenScope scope, int N) {
+ for (int i = 1; i < N; ++i) {
+ scope.getNextName();
+ }
+
+ return scope.getNextName();
+}
+
+int main() {
+ // Test a normal scope.
+ TokenScope scope = new TokenScope();
+
+ // We start with 'a'.
+ Expect.equals("a", scope.getNextName());
+ // We have 24 lower case characters, as s and g are illegal.
+ Expect.equals("A", forwardN(scope, 24));
+ // Make it overflow by skipping all uppercase.
+ Expect.equals("a_", forwardN(scope, 26));
+ // Now numbers.
+ Expect.equals("a0", forwardN(scope, 1));
+ Expect.equals("a9", forwardN(scope, 9));
+ // Then lower case letters.
+ Expect.equals("aa", forwardN(scope, 1));
+ Expect.equals("az", forwardN(scope, 25));
+ // Then upper case letters
+ Expect.equals("aA", forwardN(scope, 1));
+ Expect.equals("aZ", forwardN(scope, 25));
+ // Overflow to first position.
+ Expect.equals("b_", forwardN(scope, 1));
+ // Make sure we skipe g. We have 1 + 10 + 26 + 26 = 63 digits.
+ Expect.equals("h_", forwardN(scope, 63 * 5));
+ // Likewise, ensure we skip s.
+ Expect.equals("t_", forwardN(scope, 63 * 11));
+ // And wrap around another digit.
+ Expect.equals("a__", forwardN(scope, 63 * 33));
+
+ // Test a filtered scope.
+ Set<String> illegal = new Set.from(["b", "aa"]);
+ scope = new TokenScope(illegal);
+
+ // We start with 'a'.
+ Expect.equals("a", forwardN(scope, 1));
+ // Make sure 'b' is skipped.
+ Expect.equals("c", forwardN(scope, 1));
+ // We have 24 lower case characters, as s and g are illegal.
+ Expect.equals("A", forwardN(scope, 22));
+ // Make it overflow by skipping all uppercase.
+ Expect.equals("a_", forwardN(scope, 26));
+ // Now numbers.
+ Expect.equals("a0", forwardN(scope, 1));
+ Expect.equals("a9", forwardN(scope, 9));
+ // Make sure 'aa' is skipped on wrapping
+ Expect.equals("ab", forwardN(scope, 1));
+ Expect.equals("az", forwardN(scope, 24));
+}
« no previous file with comments | « pkg/js_ast/lib/src/printer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698