]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/InlineProperty.java
(refs #7250) Merging master, minor CHR bugfixes
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / modules / InlineProperty.java
1 package org.simantics.scl.compiler.elaboration.modules;
2
3 public class InlineProperty implements SCLValueProperty {
4     public final int arity;
5     public final int phaseMask;
6
7     public InlineProperty(int arity, int phaseMask) {
8         this.arity = arity;
9         this.phaseMask = phaseMask;
10     }
11 }