]> gerrit.simantics Code Review - simantics/platform.git/blob - SupplementedValueType.java
1dd557634906c363be5af977f7abf7e5a6273884
[simantics/platform.git] / 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 }