]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/compilation/SupplementedValueType.java
(refs #7250) Merging master, minor CHR bugfixes
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / compilation / SupplementedValueType.java
1 package org.simantics.scl.compiler.compilation;
2
3 import org.simantics.scl.compiler.types.Type;
4
5 public class SupplementedValueType {
6     public final long position;
7     public final String name;
8     public final Type type;
9
10     public SupplementedValueType(long position, String name, Type type) {
11         this.position = position;
12         this.name = name;
13         this.type = type;
14     }
15 }