Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bioball committed Oct 31, 2024
1 parent 3e00f3f commit aa38373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkl-core/src/main/java/org/pkl/core/ast/VmModifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private VmModifier() {}

public static final int GLOB = 0x1000;

// Remove when https://github.com/apple/pkl/issues/741 is fixed
// To be removed when https://github.com/apple/pkl/issues/741 is fixed
public static final int ITERABLE_MEMBER = 0x100000;

// modifier sets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ public GeneratorMemberNode visitObjectSpread(ObjectSpreadContext ctx) {
createSourceSection(ctx),
expr,
ctx.QSPREAD() != null,
symbolTable.getCurrentScope().isVisitingIterable());
visitingIterable);
}

private void insertWriteForGeneratorVarsToFrameSlotsNode(@Nullable MemberNode memberNode) {
Expand Down

0 comments on commit aa38373

Please sign in to comment.