summaryrefslogtreecommitdiff
path: root/ddl/out/java/LambdaCube/TypeInfo/CompileResult.java
blob: 36bba0d8885f825ca4ba30ea5597d82cb2c43af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// generated file, do not modify!
// 2016-04-01T16:25:35.327304000000Z

package LambdaCube.TypeInfo;

import java.util.ArrayList;
import java.util.HashMap;
import RT.*;

import LambdaCube.IR.*;

public class CompileResult {
  public enum Tag { 
    CompileError,
    Compiled
  }
  public Tag tag;

  public class CompileError_ extends CompileResult { 
    public ArrayList<Range> _0;
    public String _1;
    public ArrayList<TypeInfo> _2;
    public CompileError_() { tag = CompileResult.Tag.CompileError; }
  }
  public class Compiled_ extends CompileResult { 
    public String _0;
    public String _1;
    public Pipeline _2;
    public ArrayList<TypeInfo> _3;
    public Compiled_() { tag = CompileResult.Tag.Compiled; }
  }
}