X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Felaboration%2Fexpressions%2FELiteral.java;h=f82ae5101910bfe4c84c165392dc209f145fdf78;hb=e12e3ad357853a07b24923b341c4732962a94623;hp=388fbb37a1f426c1e435f77b9f12ba03a224cf84;hpb=ff1337ff96700fb157ec789cbef88b8f40e03798;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/expressions/ELiteral.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/expressions/ELiteral.java index 388fbb37a..f82ae5101 100644 --- a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/expressions/ELiteral.java +++ b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/expressions/ELiteral.java @@ -1,6 +1,8 @@ package org.simantics.scl.compiler.elaboration.expressions; import java.util.ArrayList; +import java.util.Collections; +import java.util.Set; import org.simantics.scl.compiler.compilation.CompilationContext; import org.simantics.scl.compiler.constants.Constant; @@ -17,10 +19,6 @@ import org.simantics.scl.compiler.top.ExpressionInterpretationContext; import org.simantics.scl.compiler.types.exceptions.MatchException; import org.simantics.scl.compiler.types.util.TypeUnparsingContext; -import gnu.trove.map.hash.TObjectIntHashMap; -import gnu.trove.set.hash.THashSet; -import gnu.trove.set.hash.TIntHashSet; - public class ELiteral extends Expression { Constant value; @@ -37,10 +35,10 @@ public class ELiteral extends Expression { public Constant getValue() { return value; } - + @Override - public void collectVars(TObjectIntHashMap allVars, - TIntHashSet vars) { + public Set getFreeVariables() { + return Collections.emptySet(); } public void toString(StringBuilder b, TypeUnparsingContext tuc) { @@ -57,11 +55,6 @@ public class ELiteral extends Expression { return value; } - @Override - public void collectFreeVariables(THashSet vars) { - } - - @Override public Expression simplify(SimplificationContext context) { return this; @@ -87,10 +80,6 @@ public class ELiteral extends Expression { return new ELiteral(value); } - @Override - public void removeFreeVariables(THashSet vars) { - } - @Override public IExpression toIExpression(ExpressionInterpretationContext target) { return new IConstant(value.realizeValue(target.localClassBuilder)); @@ -130,4 +119,8 @@ public class ELiteral extends Expression { return value.equals(other.value); } + @Override + public boolean isConstructorApplication() { + return true; + } }