]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/InlineProperty.java
Migrated source code from Simantics SVN
[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;\r
2 \r
3 public class InlineProperty implements SCLValueProperty {\r
4     public final int arity;\r
5     public final int phaseMask;\r
6 \r
7     public InlineProperty(int arity, int phaseMask) {\r
8         this.arity = arity;\r
9         this.phaseMask = phaseMask;\r
10     }\r
11 }\r