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

Side by Side Diff: src/ast.cc

Issue 7003058: A collection of context-related refactoring changes. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 bool ForInStatement::IsInlineable() const { 360 bool ForInStatement::IsInlineable() const {
361 return false; 361 return false;
362 } 362 }
363 363
364 364
365 bool WithEnterStatement::IsInlineable() const { 365 bool WithEnterStatement::IsInlineable() const {
366 return false; 366 return false;
367 } 367 }
368 368
369 369
370 bool WithExitStatement::IsInlineable() const { 370 bool ContextExitStatement::IsInlineable() const {
371 return false; 371 return false;
372 } 372 }
373 373
374 374
375 bool SwitchStatement::IsInlineable() const { 375 bool SwitchStatement::IsInlineable() const {
376 return false; 376 return false;
377 } 377 }
378 378
379 379
380 bool TryStatement::IsInlineable() const { 380 bool TryStatement::IsInlineable() const {
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
1142 int pos) 1142 int pos)
1143 : label_(label), 1143 : label_(label),
1144 statements_(statements), 1144 statements_(statements),
1145 position_(pos), 1145 position_(pos),
1146 compare_type_(NONE), 1146 compare_type_(NONE),
1147 compare_id_(AstNode::GetNextId()), 1147 compare_id_(AstNode::GetNextId()),
1148 entry_id_(AstNode::GetNextId()) { 1148 entry_id_(AstNode::GetNextId()) {
1149 } 1149 }
1150 1150
1151 } } // namespace v8::internal 1151 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698