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

Side by Side Diff: src/ast-literal-reindexer.cc

Issue 1371083003: [presubmit] Enable readability/namespace linter checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/ast-literal-reindexer.h" 5 #include "src/ast-literal-reindexer.h"
6 6
7 #include "src/ast.h" 7 #include "src/ast.h"
8 #include "src/scopes.h" 8 #include "src/scopes.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 309
310 310
311 void AstLiteralReindexer::VisitFunctionLiteral(FunctionLiteral* node) { 311 void AstLiteralReindexer::VisitFunctionLiteral(FunctionLiteral* node) {
312 // We don't recurse into the declarations or body of the function literal: 312 // We don't recurse into the declarations or body of the function literal:
313 } 313 }
314 314
315 315
316 void AstLiteralReindexer::Reindex(Expression* pattern) { 316 void AstLiteralReindexer::Reindex(Expression* pattern) {
317 pattern->Accept(this); 317 pattern->Accept(this);
318 } 318 }
319 } 319 } // namespace internal
320 } // namespace v8::internal 320 } // namespace v8
OLDNEW
« no previous file with comments | « src/ast-literal-reindexer.h ('k') | src/ast-value-factory.h » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698