@@ -17,16 +17,16 @@ Literal(String(abc))
17
17
ConstantType(String(abc))
18
18
19
19
Apply(Ident(println), List(Literal(String(abc))))
20
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
20
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
21
21
22
22
Typed(Literal(Int(8)), TypeIdent(Int))
23
- SymRef(Int, SymRef(scala, ThisType(SymRef(<root>, NoPrefix))))
23
+ SymRef(ClassDef( Int, _, _, _, _), SymRef(PackageDef( scala, _), ThisType(SymRef(PackageDef( <root>, _) , NoPrefix))))
24
24
25
25
Typed(Literal(Byte(8)), TypeIdent(Byte))
26
- SymRef(Byte, SymRef(scala, ThisType(SymRef(<root>, NoPrefix))))
26
+ SymRef(ClassDef( Byte, _, _, _, _), SymRef(PackageDef( scala, _), ThisType(SymRef(PackageDef( <root>, _) , NoPrefix))))
27
27
28
28
Typed(Literal(Short(8)), TypeIdent(Short))
29
- SymRef(Short, SymRef(scala, ThisType(SymRef(<root>, NoPrefix))))
29
+ SymRef(ClassDef( Short, _, _, _, _), SymRef(PackageDef( scala, _), ThisType(SymRef(PackageDef( <root>, _) , NoPrefix))))
30
30
31
31
Literal(Char(a))
32
32
ConstantType(Char(a))
@@ -35,86 +35,86 @@ Block(List(Literal(Int(1)), Literal(Int(2))), Literal(Int(3)))
35
35
ConstantType(Int(3))
36
36
37
37
If(Typed(Literal(Boolean(true)), TypeIdent(Boolean)), Literal(Int(1)), Literal(Int(2)))
38
- SymRef(Int, ThisType(SymRef(scala, NoPrefix)))
38
+ SymRef(ClassDef( Int, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
39
39
40
40
Match(Literal(String(a)), List(CaseDef(Value(Literal(String(a))), None, Block(Nil, Literal(Unit())))))
41
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
41
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
42
42
43
43
Match(Literal(String(b)), List(CaseDef(Bind(n, Value(Ident(_))), None, Block(Nil, Literal(Unit())))))
44
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
44
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
45
45
46
46
Match(Literal(String(c)), List(CaseDef(Bind(n, TypeTest(TypeIdent(String))), None, Block(Nil, Literal(Unit())))))
47
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
47
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
48
48
49
49
Match(Literal(String(e)), List(CaseDef(Value(Ident(_)), None, Block(Nil, Literal(Unit())))))
50
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
50
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
51
51
52
52
Match(Literal(String(f)), List(CaseDef(TypeTest(TypeIdent(String)), None, Block(Nil, Literal(Unit())))))
53
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
53
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
54
54
55
55
Match(Typed(Literal(String(g)), TypeIdent(Any)), List(CaseDef(Alternative(List(TypeTest(TypeIdent(String)), TypeTest(TypeIdent(Int)))), None, Block(Nil, Literal(Unit())))))
56
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
56
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
57
57
58
58
Match(Literal(String(h)), List(CaseDef(Value(Ident(_)), Some(Literal(Boolean(false))), Block(Nil, Literal(Unit())))))
59
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
59
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
60
60
61
61
Block(List(ValDef(a, Synthetic(), Some(Literal(String(o))))), Match(Literal(String(i)), List(CaseDef(Bind(a, Value(Ident(_))), None, Block(Nil, Literal(Unit()))))))
62
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
62
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
63
63
64
64
Match(Ident(Nil), List(CaseDef(Unapply(TypeApply(Select(Ident(List), unapplySeq, Some(Signature(List(scala.collection.Seq), scala.Some))), List(Synthetic())), Nil, List(Bind(a, Value(Ident(_))), Bind(b, Value(Ident(_))), Bind(c, Value(Ident(_))))), None, Block(Nil, Literal(Unit())))))
65
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
65
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
66
66
67
67
Try(Literal(Int(1)), List(CaseDef(Value(Ident(_)), None, Block(Nil, Literal(Unit())))), None)
68
- OrType(SymRef(Int, ThisType(SymRef(scala, NoPrefix))), SymRef(Unit, ThisType(SymRef(scala, NoPrefix))))
68
+ OrType(SymRef(ClassDef( Int, _, _, _, _), ThisType(SymRef(PackageDef( scala, _), NoPrefix))), SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix))))
69
69
70
70
Try(Literal(Int(2)), Nil, Some(Literal(Unit())))
71
71
ConstantType(Int(2))
72
72
73
73
Try(Literal(Int(3)), List(CaseDef(Value(Ident(_)), None, Block(Nil, Literal(Unit())))), Some(Literal(Unit())))
74
- OrType(SymRef(Int, ThisType(SymRef(scala, NoPrefix))), SymRef(Unit, ThisType(SymRef(scala, NoPrefix))))
74
+ OrType(SymRef(ClassDef( Int, _, _, _, _), ThisType(SymRef(PackageDef( scala, _), NoPrefix))), SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix))))
75
75
76
76
Apply(Select(Literal(String(a)), ==, Some(Signature(List(java.lang.Object), scala.Boolean))), List(Literal(String(b))))
77
- SymRef(Boolean, ThisType(SymRef(scala, NoPrefix)))
77
+ SymRef(ClassDef( Boolean, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
78
78
79
79
Apply(Select(New(TypeIdent(Object)), <init>, Some(Signature(Nil, java.lang.Object))), Nil)
80
- SymRef(Object, ThisType(SymRef(lang, NoPrefix)))
80
+ SymRef(ClassDef( Object, _, _, _, _), ThisType(SymRef(PackageDef( lang, _) , NoPrefix)))
81
81
82
82
Apply(Select(Ident(Int), box, Some(Signature(List(scala.Int), java.lang.Integer))), List(NamedArg(x, Literal(Int(9)))))
83
- SymRef(Integer, ThisType(SymRef(lang, NoPrefix)))
83
+ SymRef(ClassDef( Integer, _, _, _, _), ThisType(SymRef(PackageDef( lang, _) , NoPrefix)))
84
84
85
85
Apply(TypeApply(Select(Ident(Ordering), apply, Some(Signature(List(scala.math.Ordering), scala.math.Ordering))), List(TypeIdent(Int))), List(Ident(Int)))
86
- AppliedType(SymRef(Ordering, ThisType(SymRef(math, NoPrefix))), List(SymRef(Int, SymRef(scala, ThisType(SymRef(<root>, NoPrefix))))))
86
+ AppliedType(SymRef(ClassDef( Ordering, _, _, _, _), ThisType(SymRef(PackageDef( math, _), NoPrefix))), List(SymRef(ClassDef( Int, _, _, _, _), SymRef(PackageDef( scala, _), ThisType(SymRef(PackageDef( <root>, _) , NoPrefix))))))
87
87
88
88
Block(List(ValDef(a, TypeIdent(Int), Some(Literal(Int(3))))), Literal(Unit()))
89
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
89
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
90
90
91
91
Block(List(ValDef(b, TypeIdent(Int), Some(Literal(Int(3))))), Literal(Unit()))
92
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
92
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
93
93
94
94
Block(List(DefDef(f1, Nil, Nil, TypeIdent(Int), Some(Literal(Int(3))))), Literal(Unit()))
95
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
95
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
96
96
97
97
Block(List(DefDef(f2, Nil, Nil, TypeIdent(Int), Some(Return(Literal(Int(4)))))), Literal(Unit()))
98
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
98
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
99
99
100
100
Block(List(DefDef(f3, Nil, List(List(ValDef(i, TypeIdent(Int), None))), TypeIdent(Int), Some(Ident(i)))), Literal(Unit()))
101
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
101
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
102
102
103
103
Block(List(DefDef(f4, Nil, List(List(ValDef(i, TypeIdent(Int), None)), List(ValDef(j, TypeIdent(Int), None))), TypeIdent(Int), Some(Apply(Select(Ident(i), +, Some(Signature(List(scala.Int), scala.Int))), List(Ident(j)))))), Literal(Unit()))
104
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
104
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
105
105
106
106
Block(List(DefDef(f5, Nil, List(List(ValDef(i, TypeIdent(Int), None))), TypeIdent(Int), Some(Ident(i))), DefDef(f5$default$1, Nil, Nil, Synthetic(), Some(Literal(Int(9))))), Literal(Unit()))
107
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
107
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
108
108
109
109
Block(List(DefDef(f6, List(TypeDef(T, TypeBoundsTree(Synthetic(), Synthetic()))), List(List(ValDef(x, TypeIdent(T), None))), TypeIdent(T), Some(Ident(x)))), Literal(Unit()))
110
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
110
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
111
111
112
112
Block(List(DefDef(f7, List(TypeDef(T, TypeBoundsTree(Synthetic(), Synthetic()))), List(List(ValDef(x, TypeIdent(T), None))), Singleton(Ident(x)), Some(Ident(x)))), Literal(Unit()))
113
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
113
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
114
114
115
115
Block(List(DefDef(f8, Nil, List(List(ValDef(i, Annotated(Applied(Synthetic(), List(TypeIdent(Int))), Apply(Select(New(Synthetic()), <init>, Some(Signature(Nil, scala.annotation.internal.Repeated))), Nil)), None))), TypeIdent(Int), Some(Literal(Int(9))))), Apply(Ident(f8), List(Typed(Repeated(List(Literal(Int(1)), Literal(Int(2)), Literal(Int(3)))), Synthetic()))))
116
- SymRef(Int, SymRef(scala, ThisType(SymRef(<root>, NoPrefix))))
116
+ SymRef(ClassDef( Int, _, _, _, _), SymRef(PackageDef( scala, _), ThisType(SymRef(PackageDef( <root>, _) , NoPrefix))))
117
117
118
118
Block(List(DefDef(f9, Nil, List(List(ValDef(i, ByName(TypeIdent(Int)), None))), TypeIdent(Int), Some(Ident(i)))), Literal(Unit()))
119
- SymRef(Unit, ThisType(SymRef(scala, NoPrefix)))
119
+ SymRef(ClassDef( Unit, _, _, _, _), ThisType(SymRef(PackageDef( scala, _) , NoPrefix)))
120
120
0 commit comments