We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14a9547 commit 6e8b430Copy full SHA for 6e8b430
1 file changed
engine/source/dmdscript/iterator.d
@@ -70,7 +70,8 @@ struct Iterator
70
ostart = o;
71
this.o = o;
72
this.callcontext = cc;
73
- keys = o.proptable.table.keys.sort!((a, b) => a.compare(cc, b) < 0).release;
+ if (o.proptable.table)
74
+ keys = o.proptable.table.keys.sort!((a, b) => a.compare(cc, b) < 0).release;
75
keyindex = 0;
76
}
77
0 commit comments