X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/IAbstractSyntaxTreeVisitor.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/IAbstractSyntaxTreeVisitor.java index f08807b..6d921c2 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/IAbstractSyntaxTreeVisitor.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/IAbstractSyntaxTreeVisitor.java @@ -28,17 +28,15 @@ import net.sourceforge.phpeclipse.internal.compiler.ast.AssertStatement; import net.sourceforge.phpeclipse.internal.compiler.ast.Assignment; import net.sourceforge.phpeclipse.internal.compiler.ast.BinaryExpression; import net.sourceforge.phpeclipse.internal.compiler.ast.Block; -import net.sourceforge.phpeclipse.internal.compiler.ast.Break; -import net.sourceforge.phpeclipse.internal.compiler.ast.Case; +import net.sourceforge.phpeclipse.internal.compiler.ast.BreakStatement; +import net.sourceforge.phpeclipse.internal.compiler.ast.CaseStatement; import net.sourceforge.phpeclipse.internal.compiler.ast.CastExpression; -import net.sourceforge.phpeclipse.internal.compiler.ast.CharLiteral; -import net.sourceforge.phpeclipse.internal.compiler.ast.ClassLiteralAccess; import net.sourceforge.phpeclipse.internal.compiler.ast.Clinit; import net.sourceforge.phpeclipse.internal.compiler.ast.CompilationUnitDeclaration; import net.sourceforge.phpeclipse.internal.compiler.ast.CompoundAssignment; import net.sourceforge.phpeclipse.internal.compiler.ast.ConditionalExpression; import net.sourceforge.phpeclipse.internal.compiler.ast.ConstructorDeclaration; -import net.sourceforge.phpeclipse.internal.compiler.ast.Continue; +import net.sourceforge.phpeclipse.internal.compiler.ast.ContinueStatement; import net.sourceforge.phpeclipse.internal.compiler.ast.DefaultCase; import net.sourceforge.phpeclipse.internal.compiler.ast.DoStatement; import net.sourceforge.phpeclipse.internal.compiler.ast.DoubleLiteral; @@ -78,7 +76,6 @@ import net.sourceforge.phpeclipse.internal.compiler.ast.SingleTypeReference; import net.sourceforge.phpeclipse.internal.compiler.ast.StringLiteral; import net.sourceforge.phpeclipse.internal.compiler.ast.SuperReference; import net.sourceforge.phpeclipse.internal.compiler.ast.SwitchStatement; -import net.sourceforge.phpeclipse.internal.compiler.ast.SynchronizedStatement; import net.sourceforge.phpeclipse.internal.compiler.ast.ThisReference; import net.sourceforge.phpeclipse.internal.compiler.ast.ThrowStatement; import net.sourceforge.phpeclipse.internal.compiler.ast.TrueLiteral; @@ -107,17 +104,17 @@ public interface IAbstractSyntaxTreeVisitor { void endVisit(Assignment assignment, BlockScope scope); void endVisit(BinaryExpression binaryExpression, BlockScope scope); void endVisit(Block block, BlockScope scope); - void endVisit(Break breakStatement, BlockScope scope); - void endVisit(Case caseStatement, BlockScope scope); + void endVisit(BreakStatement breakStatement, BlockScope scope); + void endVisit(CaseStatement caseStatement, BlockScope scope); void endVisit(CastExpression castExpression, BlockScope scope); - void endVisit(CharLiteral charLiteral, BlockScope scope); - void endVisit(ClassLiteralAccess classLiteral, BlockScope scope); +// void endVisit(CharLiteral charLiteral, BlockScope scope); +// void endVisit(ClassLiteralAccess classLiteral, BlockScope scope); void endVisit(Clinit clinit, ClassScope scope); void endVisit(CompilationUnitDeclaration compilationUnitDeclaration, CompilationUnitScope scope); void endVisit(CompoundAssignment compoundAssignment, BlockScope scope); void endVisit(ConditionalExpression conditionalExpression, BlockScope scope); void endVisit(ConstructorDeclaration constructorDeclaration, ClassScope scope); - void endVisit(Continue continueStatement, BlockScope scope); + void endVisit(ContinueStatement continueStatement, BlockScope scope); void endVisit(DefaultCase defaultCaseStatement, BlockScope scope); void endVisit(DoStatement doStatement, BlockScope scope); void endVisit(DoubleLiteral doubleLiteral, BlockScope scope); @@ -159,7 +156,7 @@ public interface IAbstractSyntaxTreeVisitor { void endVisit(StringLiteral stringLiteral, BlockScope scope); void endVisit(SuperReference superReference, BlockScope scope); void endVisit(SwitchStatement switchStatement, BlockScope scope); - void endVisit(SynchronizedStatement synchronizedStatement, BlockScope scope); +// void endVisit(SynchronizedStatement synchronizedStatement, BlockScope scope); void endVisit(ThisReference thisReference, BlockScope scope); void endVisit(ThrowStatement throwStatement, BlockScope scope); void endVisit(TrueLiteral trueLiteral, BlockScope scope); @@ -182,17 +179,17 @@ public interface IAbstractSyntaxTreeVisitor { boolean visit(Assignment assignment, BlockScope scope); boolean visit(BinaryExpression binaryExpression, BlockScope scope); boolean visit(Block block, BlockScope scope); - boolean visit(Break breakStatement, BlockScope scope); - boolean visit(Case caseStatement, BlockScope scope); + boolean visit(BreakStatement breakStatement, BlockScope scope); + boolean visit(CaseStatement caseStatement, BlockScope scope); boolean visit(CastExpression castExpression, BlockScope scope); - boolean visit(CharLiteral charLiteral, BlockScope scope); - boolean visit(ClassLiteralAccess classLiteral, BlockScope scope); +// boolean visit(CharLiteral charLiteral, BlockScope scope); +// boolean visit(ClassLiteralAccess classLiteral, BlockScope scope); boolean visit(Clinit clinit, ClassScope scope); boolean visit(CompilationUnitDeclaration compilationUnitDeclaration, CompilationUnitScope scope); boolean visit(CompoundAssignment compoundAssignment, BlockScope scope); boolean visit(ConditionalExpression conditionalExpression, BlockScope scope); boolean visit(ConstructorDeclaration constructorDeclaration, ClassScope scope); - boolean visit(Continue continueStatement, BlockScope scope); + boolean visit(ContinueStatement continueStatement, BlockScope scope); boolean visit(DefaultCase defaultCaseStatement, BlockScope scope); boolean visit(DoStatement doStatement, BlockScope scope); boolean visit(DoubleLiteral doubleLiteral, BlockScope scope); @@ -234,7 +231,7 @@ public interface IAbstractSyntaxTreeVisitor { boolean visit(StringLiteral stringLiteral, BlockScope scope); boolean visit(SuperReference superReference, BlockScope scope); boolean visit(SwitchStatement switchStatement, BlockScope scope); - boolean visit(SynchronizedStatement synchronizedStatement, BlockScope scope); +// boolean visit(SynchronizedStatement synchronizedStatement, BlockScope scope); boolean visit(ThisReference thisReference, BlockScope scope); boolean visit(ThrowStatement throwStatement, BlockScope scope); boolean visit(TrueLiteral trueLiteral, BlockScope scope);