]> gerrit.simantics Code Review - simantics/platform.git/blob - unification/UCons.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / unification / UCons.java
1 package org.simantics.scl.runtime.unification;
2
3
4 public class UCons {
5     public final UTag tag;
6     public Object components; // Stored as a tuple
7     
8     public UCons(UTag tag, Object components) {
9         this.tag = tag;
10         this.components = components;
11     }
12 }