You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lkql_jit/language/src/main/java/com/adacore/lkql_jit/nodes/expressions/list_comprehension/ListComprehension.java
+6-42Lines changed: 6 additions & 42 deletions
Original file line number
Diff line number
Diff line change
@@ -30,32 +30,13 @@ public final class ListComprehension extends Expr {
30
30
31
31
// ----- Attributes -----
32
32
33
-
/** Slots for the list comprehension parameters. */
34
-
privatefinalint[] slots;
35
-
36
-
/** Descriptor of the frame to create. */
37
-
privatefinalFrameDescriptorframeDescriptor;
38
-
39
-
/** Descriptor for the values to close. */
40
-
privatefinalClosureDescriptorclosureDescriptor;
41
-
42
33
// ----- Children -----
43
34
44
35
/** Generators of the list comprehension. */
45
36
@Child
46
37
@SuppressWarnings("FieldMayBeFinal")
47
38
privateComprehensionAssocListgenerators;
48
39
49
-
/** Result expression of the list comprehension. */
50
-
@Child
51
-
@SuppressWarnings("FieldMayBeFinal")
52
-
privateExprexpr;
53
-
54
-
/** Guard expression of the list comprehension. */
0 commit comments