]> gerrit.simantics Code Review - simantics/platform.git/blob - InlineProperty.java
4f435c38d342f983f0b14b0016e640d96a07fe3a
[simantics/platform.git] / 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 }