]> gerrit.simantics Code Review - simantics/platform.git/blob - compiler/elaboration/modules/InlineProperty.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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