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

Side by Side Diff: compiler/java/com/google/dart/compiler/ast/ASTVisitor.java

Issue 10665033: Initial support for hide and show in import directives (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/ast/DartImportDirective.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 package com.google.dart.compiler.ast; 5 package com.google.dart.compiler.ast;
6 6
7 import java.util.List; 7 import java.util.List;
8 8
9 /** 9 /**
10 * A visitor for abstract syntax tree. 10 * A visitor for abstract syntax tree.
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 } 186 }
187 187
188 public R visitIdentifier(DartIdentifier node) { 188 public R visitIdentifier(DartIdentifier node) {
189 return visitExpression(node); 189 return visitExpression(node);
190 } 190 }
191 191
192 public R visitIfStatement(DartIfStatement node) { 192 public R visitIfStatement(DartIfStatement node) {
193 return visitStatement(node); 193 return visitStatement(node);
194 } 194 }
195 195
196 public R visitImportCombinator(ImportCombinator node) {
197 return visitNode(node);
198 }
199
196 public R visitImportDirective(DartImportDirective node) { 200 public R visitImportDirective(DartImportDirective node) {
197 return visitDirective(node); 201 return visitDirective(node);
198 } 202 }
199 203
204 public R visitImportHideCombinator(ImportHideCombinator node) {
205 return visitImportCombinator(node);
206 }
207
208 public R visitImportShowCombinator(ImportShowCombinator node) {
209 return visitImportCombinator(node);
210 }
211
200 public R visitInitializer(DartInitializer node) { 212 public R visitInitializer(DartInitializer node) {
201 return visitNode(node); 213 return visitNode(node);
202 } 214 }
203 215
204 public R visitIntegerLiteral(DartIntegerLiteral node) { 216 public R visitIntegerLiteral(DartIntegerLiteral node) {
205 return visitLiteral(node); 217 return visitLiteral(node);
206 } 218 }
207 219
208 public R visitLabel(DartLabel node) { 220 public R visitLabel(DartLabel node) {
209 return visitStatement(node); 221 return visitStatement(node);
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 public R visitTypeParameter(DartTypeParameter node) { 368 public R visitTypeParameter(DartTypeParameter node) {
357 return visitDeclaration(node); 369 return visitDeclaration(node);
358 } 370 }
359 371
360 public R visitNativeBlock(DartNativeBlock node) { 372 public R visitNativeBlock(DartNativeBlock node) {
361 return visitBlock(node); 373 return visitBlock(node);
362 } 374 }
363 375
364 public R visitRedirectConstructorInvocation(DartRedirectConstructorInvocation node) { 376 public R visitRedirectConstructorInvocation(DartRedirectConstructorInvocation node) {
365 return visitInvocation(node); 377 return visitInvocation(node);
366 } 378 }
367 } 379 }
OLDNEW
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/ast/DartImportDirective.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698