summaryrefslogtreecommitdiff
path: root/ddl/out/LambdaCube.TypeInfo.java
blob: 59c2a26a2a7b70b56178d195c992fecc01f827fe (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// generated file, do not modify!
// 2016-03-14T10:58:30.014693000000Z

import LambdaCube.IR;

public class LambdaCube.TypeInfo {
  public class Range {
    public enum Tag { 
      Range
    }
    public Tag tag;

    public class Range extends Range { 
      public Integer startLine;
      public Integer startColumn;
      public Integer endLine;
      public Integer endColumn;
    }
  }

  public class TypeInfo {
    public enum Tag { 
      TypeInfo
    }
    public Tag tag;

    public class TypeInfo extends TypeInfo { 
      public Range range;
      public String text;
    }
  }

  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 class Compiled extends CompileResult { 
      public String _0;
      public Pipeline _1;
      public ArrayList<TypeInfo> _2;
    }
  }

}