We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c2dcc commit f23a37dCopy full SHA for f23a37d
src/org/osflash/signals/SlotList.ts
@@ -13,9 +13,9 @@ export class SlotList {
13
public static NIL: SlotList = new SlotList(null, null);
14
15
// 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;
+ public head: ISlot;
+ public tail: SlotList;
+ public nonEmpty: boolean = false;
19
20
/**
21
* Creates and returns a new SlotList object.
0 commit comments