first scanner /parser copied from the jdt java version
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / RecoveredStatement.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v0.5 
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v05.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.parser;
12
13 /**
14  * Internal statement structure for parsing recovery 
15  */
16 import net.sourceforge.phpdt.internal.compiler.ast.AstNode;
17 import net.sourceforge.phpdt.internal.compiler.ast.Statement;
18
19 public class RecoveredStatement extends RecoveredElement {
20
21         public Statement statement;
22         boolean alreadyCompletedLocalInitialization;
23 public RecoveredStatement(Statement statement, RecoveredElement parent, int bracketBalance){
24         super(parent, bracketBalance);
25         this.statement = statement;
26 }
27 /* 
28  * Answer the associated parsed structure
29  */
30 public AstNode parseTree(){
31         return statement;
32 }
33 /*
34  * Answer the very source end of the corresponding parse node
35  */
36 public int sourceEnd(){
37         return this.statement.sourceEnd;
38 }
39 public String toString(int tab){
40         return tabString(tab) + "Recovered statement:\n" + statement.toString(tab + 1); //$NON-NLS-1$
41 }
42 public Statement updatedStatement(){
43         return statement;
44 }
45 public void updateParseTree(){
46         this.updatedStatement();
47 }
48 /*
49  * Update the declarationSourceEnd of the corresponding parse node
50  */
51 public void updateSourceEndIfNecessary(int sourceEnd){
52         if (this.statement.sourceEnd == 0)      
53                 this.statement.sourceEnd = sourceEnd;
54 }
55 }