X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Finternal%2Fcodegen%2Feffects%2FEffectConstructor.java;fp=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Finternal%2Fcodegen%2Feffects%2FEffectConstructor.java;h=0fa3507f924db5d5b76891644fa6beac9560c3a9;hb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;hp=d008e85839b48d712e97bcec0e6f5ba1cf269fb2;hpb=24e2b34260f219f0d1644ca7a138894980e25b14;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/codegen/effects/EffectConstructor.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/codegen/effects/EffectConstructor.java index d008e8583..0fa3507f9 100644 --- a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/codegen/effects/EffectConstructor.java +++ b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/codegen/effects/EffectConstructor.java @@ -1,24 +1,24 @@ -package org.simantics.scl.compiler.internal.codegen.effects; - -import java.util.ArrayList; -import java.util.List; - -import org.simantics.scl.compiler.types.TCon; - -public class EffectConstructor { - public final TCon name; - ArrayList threadLocalVariables = - new ArrayList(); - - public EffectConstructor(TCon name) { - this.name = name; - } - - public List getThreadLocalVariables() { - return threadLocalVariables; - } - - public void addThreadLocalVariable(ThreadLocalVariable var) { - threadLocalVariables.add(var); - } -} +package org.simantics.scl.compiler.internal.codegen.effects; + +import java.util.ArrayList; +import java.util.List; + +import org.simantics.scl.compiler.types.TCon; + +public class EffectConstructor { + public final TCon name; + ArrayList threadLocalVariables = + new ArrayList(); + + public EffectConstructor(TCon name) { + this.name = name; + } + + public List getThreadLocalVariables() { + return threadLocalVariables; + } + + public void addThreadLocalVariable(ThreadLocalVariable var) { + threadLocalVariables.add(var); + } +}