@@ -47,7 +47,7 @@ private module Implementation implements InputSig<Location> {
47
47
/** Holds if `first` is first executed when entering `scope`. */
48
48
predicate scopeFirst ( CfgScope scope , AstNode first ) { scope .scopeFirst ( first ) }
49
49
50
- /** Holds if `scope` is exited when `last` finishes with completion `c`. */
50
+ /** Holds if `scope` is exited when `last` finishes with completion `c`. */
51
51
predicate scopeLast ( CfgScope scope , AstNode last , Completion c ) { scope .scopeLast ( last , c ) }
52
52
53
53
predicate successorTypeIsSimple ( SuccessorType t ) { t instanceof Cfg:: NormalSuccessor }
@@ -67,26 +67,22 @@ import CfgImpl
67
67
* A literal value in a Bicep program.
68
68
*/
69
69
class LiteralTree extends LeafTree instanceof Literals { }
70
- /**
71
- * A Interpolation literal value in a Bicep program.
72
- */
73
- class InterpolationLiteralTree extends LeafTree instanceof InterpolationLiteral { }
70
+
74
71
/**
75
72
* A Null literal value in a Bicep program.
76
73
*/
77
74
class NullLiteralTree extends LeafTree instanceof NullLiteral { }
75
+
78
76
/**
79
77
* A NullableReturnType literal value in a Bicep program.
80
78
*/
81
79
class NullableReturnTypeLiteralTree extends LeafTree instanceof NullableReturnTypeLiteral { }
82
- /**
83
- * A NullableType literal value in a Bicep program.
84
- */
85
- class NullableTypeLiteralTree extends LeafTree instanceof NullableTypeLiteral { }
80
+
86
81
/**
87
82
* A String literal value in a Bicep program.
88
83
*/
89
84
class StringLiteralTree extends LeafTree instanceof StringLiteral { }
85
+
90
86
/**
91
87
* A StringContent literal value in a Bicep program.
92
88
*/
0 commit comments