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

Unified Diff: runtime/vm/scopes_test.cc

Issue 11893002: Improve compilation speed on a pathological case > 2x (7 sec -> 2.7 sec) by improving local lookups. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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 | « runtime/vm/scopes.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/scopes_test.cc
===================================================================
--- runtime/vm/scopes_test.cc (revision 17040)
+++ runtime/vm/scopes_test.cc (working copy)
@@ -12,18 +12,18 @@
TEST_CASE(LocalScope) {
// Allocate a couple of local variables first.
const Type& dynamic_type = Type::ZoneHandle(Type::DynamicType());
- const String& a = String::ZoneHandle(String::New("a"));
+ const String& a = String::ZoneHandle(Symbols::New("a"));
LocalVariable* var_a =
new LocalVariable(Scanner::kDummyTokenIndex, a, dynamic_type);
LocalVariable* inner_var_a =
new LocalVariable(Scanner::kDummyTokenIndex, a, dynamic_type);
- const String& b = String::ZoneHandle(String::New("b"));
+ const String& b = String::ZoneHandle(Symbols::New("b"));
LocalVariable* var_b =
new LocalVariable(Scanner::kDummyTokenIndex, b, dynamic_type);
- const String& c = String::ZoneHandle(String::New("c"));
+ const String& c = String::ZoneHandle(Symbols::New("c"));
LocalVariable* var_c =
new LocalVariable(Scanner::kDummyTokenIndex, c, dynamic_type);
- const String& L = String::ZoneHandle(String::New("L"));
+ const String& L = String::ZoneHandle(Symbols::New("L"));
SourceLabel* label_L =
new SourceLabel(Scanner::kDummyTokenIndex, L, SourceLabel::kFor);
« no previous file with comments | « runtime/vm/scopes.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698