summaryrefslogtreecommitdiff
path: root/ddl/out/java/LambdaCube/TypeInfo/CompileResult.java
blob: c9e7b2d3295a70436fb74924803a9f88bddbfd40 (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-03-21T13:31:10.409214000000Z

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