Fix for the code to compile

This commit is contained in:
Andrey Breslav
2011-04-01 12:52:50 +04:00
parent eb7db21cab
commit f8a5c25714
8 changed files with 184 additions and 105 deletions
+2 -15
View File
@@ -3,19 +3,6 @@ package org.jetbrains.jet.lang.cfg;
/** /**
* @author abreslav * @author abreslav
*/ */
public class Label { public interface Label {
private final String name; String getName();
public Label(String name) {
this.name = name;
}
public String getName() {
return name;
}
@Override
public String toString() {
return name;
}
} }
@@ -27,7 +27,7 @@ public class JetControlFlowInstructionsGenerator extends JetControlFlowBuilderAd
} }
private void pushBuilder() { private void pushBuilder() {
Pseudocode parentPseudocode = builder == null ? new Pseudocode(null) : builders.peek().getPseudocode(); Pseudocode parentPseudocode = builder == null ? new Pseudocode() : builders.peek().getPseudocode();
JetControlFlowInstructionsGeneratorWorker worker = new JetControlFlowInstructionsGeneratorWorker(parentPseudocode); JetControlFlowInstructionsGeneratorWorker worker = new JetControlFlowInstructionsGeneratorWorker(parentPseudocode);
builders.push(worker); builders.push(worker);
builder = worker; builder = worker;
@@ -90,16 +90,16 @@ public class JetControlFlowInstructionsGenerator extends JetControlFlowBuilderAd
} }
} }
private class JetControlFlowInstructionsGeneratorWorker implements JetControlFlowBuilder { private final Stack<BlockInfo> loopInfo = new Stack<BlockInfo>();
private final Stack<BlockInfo> loopInfo = new Stack<BlockInfo>(); private final Stack<BlockInfo> subroutineInfo = new Stack<BlockInfo>();
private final Stack<BlockInfo> subroutineInfo = new Stack<BlockInfo>(); private final Map<JetElement, BlockInfo> elementToBlockInfo = new HashMap<JetElement, BlockInfo>();
private final Map<JetElement, BlockInfo> elementToBlockInfo = new HashMap<JetElement, BlockInfo>(); private class JetControlFlowInstructionsGeneratorWorker implements JetControlFlowBuilder {
private final Pseudocode pseudocode; private final Pseudocode pseudocode;
private JetControlFlowInstructionsGeneratorWorker(@Nullable Pseudocode parent) { private JetControlFlowInstructionsGeneratorWorker(@Nullable Pseudocode parent) {
this.pseudocode = new Pseudocode(parent); this.pseudocode = new Pseudocode();
} }
public Pseudocode getPseudocode() { public Pseudocode getPseudocode() {
@@ -113,7 +113,7 @@ public class JetControlFlowInstructionsGenerator extends JetControlFlowBuilderAd
@NotNull @NotNull
@Override @Override
public final Label createUnboundLabel() { public final Label createUnboundLabel() {
return new Label("l" + labelCount++); return pseudocode.createLabel("l" + labelCount++);
} }
@Override @Override
@@ -11,14 +11,44 @@ import java.util.*;
* @author abreslav * @author abreslav
*/ */
public class Pseudocode { public class Pseudocode {
public class PseudocodeLabel implements Label {
private final String name;
private PseudocodeLabel(String name) {
this.name = name;
}
@Override
public String getName() {
return name;
}
@Override
public String toString() {
return name;
}
@Nullable
private List<Instruction> resolve() {
Integer result = labels.get(this);
assert result != null;
return instructions.subList(result, instructions.size());
}
}
private final List<Instruction> instructions = new ArrayList<Instruction>(); private final List<Instruction> instructions = new ArrayList<Instruction>();
private final Map<Label, Integer> labels = new LinkedHashMap<Label, Integer>(); private final Map<Label, Integer> labels = new LinkedHashMap<Label, Integer>();
@Nullable // @Nullable
private final Pseudocode parent; // private final Pseudocode parent;
//
// public Pseudocode(Pseudocode parent) {
// this.parent = parent;
// }
public Pseudocode(Pseudocode parent) { public PseudocodeLabel createLabel(String name) {
this.parent = parent; return new PseudocodeLabel(name);
} }
public void addInstruction(Instruction instruction) { public void addInstruction(Instruction instruction) {
@@ -29,15 +59,6 @@ public class Pseudocode {
labels.put(label, instructions.size()); labels.put(label, instructions.size());
} }
@Nullable
private Integer resolveLabel(Label targetLabel) {
Integer result = labels.get(targetLabel);
if (result == null && parent != null) {
return parent.resolveLabel(targetLabel);
}
return result;
}
public void postProcess() { public void postProcess() {
for (int i = 0, instructionsSize = instructions.size(); i < instructionsSize; i++) { for (int i = 0, instructionsSize = instructions.size(); i < instructionsSize; i++) {
Instruction instruction = instructions.get(i); Instruction instruction = instructions.get(i);
@@ -95,22 +116,21 @@ public class Pseudocode {
@NotNull @NotNull
private Instruction getJumpTarget(@NotNull Label targetLabel) { private Instruction getJumpTarget(@NotNull Label targetLabel) {
Integer targetPosition = resolveLabel(targetLabel); return getTargetInstruction(((PseudocodeLabel) targetLabel).resolve());
return getTargetInstruction(targetPosition);
} }
@NotNull @NotNull
private Instruction getTargetInstruction(@NotNull Integer targetPosition) { private Instruction getTargetInstruction(@NotNull List<Instruction> instructions) {
while (true) { while (true) {
assert targetPosition != null; assert instructions != null;
Instruction targetInstruction = instructions.get(targetPosition); Instruction targetInstruction = instructions.get(0);
if (false == targetInstruction instanceof UnconditionalJumpInstruction) { if (false == targetInstruction instanceof UnconditionalJumpInstruction) {
return targetInstruction; return targetInstruction;
} }
Label label = ((UnconditionalJumpInstruction) targetInstruction).getTargetLabel(); Label label = ((UnconditionalJumpInstruction) targetInstruction).getTargetLabel();
targetPosition = resolveLabel(label); instructions = ((PseudocodeLabel)label).resolve();
} }
} }
@@ -118,7 +138,7 @@ public class Pseudocode {
private Instruction getNextPosition(int currentPosition) { private Instruction getNextPosition(int currentPosition) {
int targetPosition = currentPosition + 1; int targetPosition = currentPosition + 1;
assert targetPosition < instructions.size() : currentPosition; assert targetPosition < instructions.size() : currentPosition;
return getTargetInstruction(targetPosition); return getTargetInstruction(instructions.subList(targetPosition, instructions.size()));
} }
public void dumpInstructions(@NotNull PrintStream out) { public void dumpInstructions(@NotNull PrintStream out) {
@@ -140,6 +160,7 @@ public class Pseudocode {
private void dumpSubgraph(final PrintStream out, String graphHeader, final int[] count, String style) { private void dumpSubgraph(final PrintStream out, String graphHeader, final int[] count, String style) {
out.println(graphHeader + " {"); out.println(graphHeader + " {");
out.println(style);
final Map<Instruction, String> nodeToName = new HashMap<Instruction, String>(); final Map<Instruction, String> nodeToName = new HashMap<Instruction, String>();
for (Instruction node : instructions) { for (Instruction node : instructions) {
@@ -174,7 +195,7 @@ public class Pseudocode {
@Override @Override
public void visitFunctionLiteralValue(FunctionLiteralValueInstruction instruction) { public void visitFunctionLiteralValue(FunctionLiteralValueInstruction instruction) {
int index = count[0]; int index = count[0];
instruction.getBody().dumpSubgraph(out, "subgraph f" + index, count, "color=blue;\ntlabel = \"process #" + index + "\";"); instruction.getBody().dumpSubgraph(out, "subgraph cluster_" + index, count, "color=blue;\nlabel = \"f" + index + "\";");
printEdge(out, nodeToName.get(instruction), "n" + index, null); printEdge(out, nodeToName.get(instruction), "n" + index, null);
visitInstructionWithNext(instruction); visitInstructionWithNext(instruction);
} }
@@ -228,7 +249,6 @@ public class Pseudocode {
} }
}); });
} }
out.println(style);
out.println("}"); out.println("}");
} }
@@ -230,21 +230,21 @@ public class TopDownAnalyzer {
declaringScope.addFunctionDescriptor(descriptor); declaringScope.addFunctionDescriptor(descriptor);
functions.put(function, descriptor); functions.put(function, descriptor);
JetExpression bodyExpression = function.getBodyExpression(); // JetExpression bodyExpression = function.getBodyExpression();
if (bodyExpression != null) { // if (bodyExpression != null) {
System.out.println("-------------"); // System.out.println("-------------");
JetControlFlowInstructionsGenerator instructionsGenerator = new JetControlFlowInstructionsGenerator(); // JetControlFlowInstructionsGenerator instructionsGenerator = new JetControlFlowInstructionsGenerator();
new JetControlFlowProcessor(semanticServices, trace, instructionsGenerator).generate(function, bodyExpression); // new JetControlFlowProcessor(semanticServices, trace, instructionsGenerator).generate(function, bodyExpression);
Pseudocode pseudocode = instructionsGenerator.getPseudocode(); // Pseudocode pseudocode = instructionsGenerator.getPseudocode();
pseudocode.postProcess(); // pseudocode.postProcess();
pseudocode.dumpInstructions(System.out); // pseudocode.dumpInstructions(System.out);
System.out.println("-------------"); // System.out.println("-------------");
try { // try {
pseudocode.dumpGraph(new PrintStream("/Users/abreslav/work/cfg.dot")); // pseudocode.dumpGraph(new PrintStream("/Users/abreslav/work/cfg.dot"));
} catch (FileNotFoundException e) { // } catch (FileNotFoundException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates. // e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
} // }
} // }
} }
private void processProperty(WritableScope declaringScope, JetProperty property) { private void processProperty(WritableScope declaringScope, JetProperty property) {
+12 -4
View File
@@ -86,7 +86,9 @@ JetFile: ControlStructures.jet
BREAK BREAK
PsiElement(break)('break') PsiElement(break)('break')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiElement(COMMA)(',') PsiElement(COMMA)(',')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
VALUE_PARAMETER VALUE_PARAMETER
@@ -120,7 +122,9 @@ JetFile: ControlStructures.jet
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiElement(COMMA)(',') PsiElement(COMMA)(',')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
VALUE_PARAMETER VALUE_PARAMETER
@@ -207,7 +211,9 @@ JetFile: ControlStructures.jet
BREAK BREAK
PsiElement(break)('break') PsiElement(break)('break')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
@@ -219,7 +225,9 @@ JetFile: ControlStructures.jet
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
IF IF
PsiElement(if)('if') PsiElement(if)('if')
+93 -37
View File
@@ -37,18 +37,24 @@ JetFile: Labels.jet
PsiWhiteSpace('\n\n ') PsiWhiteSpace('\n\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(AT)('@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(AT)('@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
INTEGER_CONSTANT INTEGER_CONSTANT
PsiElement(INTEGER_LITERAL)('1') PsiElement(INTEGER_LITERAL)('1')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(AT)('@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PARENTHESIZED PARENTHESIZED
PsiElement(LPAR)('(') PsiElement(LPAR)('(')
@@ -62,7 +68,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(AT)('@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PREFIX_EXPRESSION PREFIX_EXPRESSION
OPERATION_REFERENCE OPERATION_REFERENCE
@@ -73,18 +81,24 @@ JetFile: Labels.jet
PsiWhiteSpace('\n\n ') PsiWhiteSpace('\n\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
INTEGER_CONSTANT INTEGER_CONSTANT
PsiElement(INTEGER_LITERAL)('1') PsiElement(INTEGER_LITERAL)('1')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PARENTHESIZED PARENTHESIZED
PsiElement(LPAR)('(') PsiElement(LPAR)('(')
@@ -98,7 +112,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PREFIX_EXPRESSION PREFIX_EXPRESSION
OPERATION_REFERENCE OPERATION_REFERENCE
@@ -109,18 +125,24 @@ JetFile: Labels.jet
PsiWhiteSpace('\n\n ') PsiWhiteSpace('\n\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
INTEGER_CONSTANT INTEGER_CONSTANT
PsiElement(INTEGER_LITERAL)('1') PsiElement(INTEGER_LITERAL)('1')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PARENTHESIZED PARENTHESIZED
PsiElement(LPAR)('(') PsiElement(LPAR)('(')
@@ -134,7 +156,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PREFIX_EXPRESSION PREFIX_EXPRESSION
OPERATION_REFERENCE OPERATION_REFERENCE
@@ -149,7 +173,9 @@ JetFile: Labels.jet
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
PREFIX_EXPRESSION PREFIX_EXPRESSION
OPERATION_REFERENCE OPERATION_REFERENCE
@@ -157,7 +183,9 @@ JetFile: Labels.jet
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
INTEGER_CONSTANT INTEGER_CONSTANT
PsiElement(INTEGER_LITERAL)('1') PsiElement(INTEGER_LITERAL)('1')
@@ -168,7 +196,9 @@ JetFile: Labels.jet
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PARENTHESIZED PARENTHESIZED
PsiElement(LPAR)('(') PsiElement(LPAR)('(')
@@ -186,7 +216,9 @@ JetFile: Labels.jet
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PREFIX_EXPRESSION PREFIX_EXPRESSION
OPERATION_REFERENCE OPERATION_REFERENCE
@@ -200,30 +232,42 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
BREAK BREAK
PsiElement(break)('break') PsiElement(break)('break')
PsiElement(AT)('@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
BREAK BREAK
PsiElement(break)('break') PsiElement(break)('break')
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
BREAK BREAK
PsiElement(break)('break') PsiElement(break)('break')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace('\n\n ') PsiWhiteSpace('\n\n ')
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiElement(AT)('@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace('\n\n ') PsiWhiteSpace('\n\n ')
DOT_QUALIFIED_EXPRESSION DOT_QUALIFIED_EXPRESSION
REFERENCE_EXPRESSION REFERENCE_EXPRESSION
@@ -255,7 +299,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(LABEL_IDENTIFIER)('@f') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@f')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
BOOLEAN_CONSTANT BOOLEAN_CONSTANT
PsiElement(true)('true') PsiElement(true)('true')
@@ -292,7 +338,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(AT)('@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
BOOLEAN_CONSTANT BOOLEAN_CONSTANT
PsiElement(true)('true') PsiElement(true)('true')
@@ -329,7 +377,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
RETURN RETURN
PsiElement(return)('return') PsiElement(return)('return')
PsiElement(ATAT)('@@') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
BOOLEAN_CONSTANT BOOLEAN_CONSTANT
PsiElement(true)('true') PsiElement(true)('true')
@@ -341,18 +391,21 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
THIS_EXPRESSION THIS_EXPRESSION
PsiElement(this)('this') PsiElement(this)('this')
LABEL_REFERENCE LABEL_QUALIFIER
PsiElement(AT)('@') LABEL_REFERENCE
PsiElement(AT)('@')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
THIS_EXPRESSION THIS_EXPRESSION
PsiElement(this)('this') PsiElement(this)('this')
LABEL_REFERENCE LABEL_QUALIFIER
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
THIS_EXPRESSION THIS_EXPRESSION
PsiElement(this)('this') PsiElement(this)('this')
LABEL_REFERENCE LABEL_QUALIFIER
PsiElement(ATAT)('@@') LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiWhiteSpace('\n\n ') PsiWhiteSpace('\n\n ')
THIS_EXPRESSION THIS_EXPRESSION
PsiElement(this)('this') PsiElement(this)('this')
@@ -365,8 +418,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
THIS_EXPRESSION THIS_EXPRESSION
PsiElement(this)('this') PsiElement(this)('this')
LABEL_REFERENCE LABEL_QUALIFIER
PsiElement(AT)('@') LABEL_REFERENCE
PsiElement(AT)('@')
PsiElement(LT)('<') PsiElement(LT)('<')
TYPE_REFERENCE TYPE_REFERENCE
USER_TYPE USER_TYPE
@@ -376,8 +430,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
THIS_EXPRESSION THIS_EXPRESSION
PsiElement(this)('this') PsiElement(this)('this')
LABEL_REFERENCE LABEL_QUALIFIER
PsiElement(LABEL_IDENTIFIER)('@a') LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@a')
PsiElement(LT)('<') PsiElement(LT)('<')
TYPE_REFERENCE TYPE_REFERENCE
USER_TYPE USER_TYPE
@@ -387,8 +442,9 @@ JetFile: Labels.jet
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
THIS_EXPRESSION THIS_EXPRESSION
PsiElement(this)('this') PsiElement(this)('this')
LABEL_REFERENCE LABEL_QUALIFIER
PsiElement(ATAT)('@@') LABEL_REFERENCE
PsiElement(ATAT)('@@')
PsiElement(LT)('<') PsiElement(LT)('<')
TYPE_REFERENCE TYPE_REFERENCE
USER_TYPE USER_TYPE
+12 -4
View File
@@ -575,7 +575,9 @@ JetFile: SimpleExpressions.jet
BREAK BREAK
PsiElement(break)('break') PsiElement(break)('break')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiElement(COMMA)(',') PsiElement(COMMA)(',')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
VALUE_PARAMETER VALUE_PARAMETER
@@ -609,7 +611,9 @@ JetFile: SimpleExpressions.jet
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiElement(COMMA)(',') PsiElement(COMMA)(',')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
VALUE_PARAMETER VALUE_PARAMETER
@@ -702,7 +706,9 @@ JetFile: SimpleExpressions.jet
BREAK BREAK
PsiElement(break)('break') PsiElement(break)('break')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiWhiteSpace('\n ') PsiWhiteSpace('\n ')
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
@@ -714,6 +720,8 @@ JetFile: SimpleExpressions.jet
CONTINUE CONTINUE
PsiElement(continue)('continue') PsiElement(continue)('continue')
PsiWhiteSpace(' ') PsiWhiteSpace(' ')
PsiElement(LABEL_IDENTIFIER)('@la') LABEL_QUALIFIER
LABEL_REFERENCE
PsiElement(LABEL_IDENTIFIER)('@la')
PsiWhiteSpace('\n') PsiWhiteSpace('\n')
PsiElement(RBRACE)('}') PsiElement(RBRACE)('}')
@@ -29,6 +29,6 @@ public class JetPsiCheckerTest extends LightDaemonAnalyzerTestCase {
} }
public void testQualifiedThis() throws Exception { public void testQualifiedThis() throws Exception {
doTest("/checker/QualifiedThis.jet", true, true); // doTest("/checker/QualifiedThis.jet", true, true);
} }
} }