A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / flow / LabelFlowContext.java
index 7192673..2850d36 100644 (file)
 package net.sourceforge.phpdt.internal.compiler.flow;
 
 import net.sourceforge.phpdt.core.compiler.CharOperation;
+import net.sourceforge.phpdt.internal.compiler.ast.ASTNode;
 import net.sourceforge.phpdt.internal.compiler.codegen.Label;
 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
-import net.sourceforge.phpeclipse.internal.compiler.ast.AstNode;
 
 /**
- * Reflects the context of code analysis, keeping track of enclosing
- *     try statements, exception handlers, etc...
+ * Reflects the context of code analysis, keeping track of enclosing try
+ * statements, exception handlers, etc...
  */
 public class LabelFlowContext extends SwitchFlowContext {
-       
+
        public char[] labelName;
-       
-       public LabelFlowContext(
-               FlowContext parent,
-               AstNode associatedNode,
-               char[] labelName,
-               Label breakLabel,
-               BlockScope scope) {
-                       
+
+       public LabelFlowContext(FlowContext parent, ASTNode associatedNode,
+                       char[] labelName, Label breakLabel, BlockScope scope) {
+
                super(parent, associatedNode, breakLabel);
                this.labelName = labelName;
                checkLabelValidity(scope);
        }
 
        void checkLabelValidity(BlockScope scope) {
-               
+
                // check if label was already defined above
                FlowContext current = parent;
                while (current != null) {
                        char[] currentLabelName;
                        if (((currentLabelName = current.labelName()) != null)
-                               && CharOperation.equals(currentLabelName, labelName)) {
-                               scope.problemReporter().alreadyDefinedLabel(labelName, associatedNode);
+                                       && CharOperation.equals(currentLabelName, labelName)) {
+                               scope.problemReporter().alreadyDefinedLabel(labelName,
+                                               associatedNode);
                        }
                        current = current.parent;
                }