Skip to content

Commit f23a37d

Browse files
committed
correct accessibility of properties
1 parent d6c2dcc commit f23a37d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/org/osflash/signals/SlotList.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export class SlotList {
1313
public static NIL: SlotList = new SlotList(null, null);
1414

1515
// Although those variables are not const, they would be if AS3 would handle it correctly.
16-
private head: ISlot;
17-
private tail: SlotList;
18-
private nonEmpty: boolean = false;
16+
public head: ISlot;
17+
public tail: SlotList;
18+
public nonEmpty: boolean = false;
1919

2020
/**
2121
* Creates and returns a new SlotList object.

0 commit comments

Comments
 (0)