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 fb9247e commit d6c2dccCopy full SHA for d6c2dcc
src/org/osflash/signals/SlotList.ts
@@ -12,6 +12,11 @@ export class SlotList {
12
*/
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;
19
+
20
/**
21
* Creates and returns a new SlotList object.
22
*
@@ -42,11 +47,6 @@ export class SlotList {
42
47
}
43
48
44
49
45
- // Although those variables are not const, they would be if AS3 would handle it correctly.
46
- public head: ISlot;
- public tail: SlotList;
- public nonEmpty: boolean = false;
-
50
51
* The number of slots in the list.
52
0 commit comments