isVariableReassignment

This commit is contained in:
Andrey Breslav
2011-07-14 21:20:45 +04:00
parent 0e7b8b8f35
commit fe6eed2913
6 changed files with 37 additions and 1 deletions
@@ -53,6 +53,11 @@ public class JetTestUtils {
public void recordStatement(@NotNull JetElement statement) {
}
@Override
public void recordVariableReassignment(@NotNull JetBinaryExpression expression) {
}
@Override
public void recordResolutionScope(@NotNull JetExpression expression, @NotNull JetScope scope) {
}
@@ -185,6 +190,11 @@ public class JetTestUtils {
throw new UnsupportedOperationException(); // TODO
}
@Override
public boolean isVariableReassignment(JetBinaryExpression expression) {
throw new UnsupportedOperationException(); // TODO
}
@Override
public ConstructorDescriptor resolveSuperConstructor(JetDelegatorToSuperCall superCall) {
throw new UnsupportedOperationException(); // TODO