summaryrefslogtreecommitdiff
path: root/ddl/out/java/LambdaCube/TypeInfo/CompileResult.java
blob: 91653b5f6f54c913dbbda39bed2a43cfaf0064a9 (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-09-15T19:44:48.120020034Z

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; }
  }
}