File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ export class Container {
258
258
export class RandomAccessContainer extends Container { }
259
259
export class ContiguousContainer extends RandomAccessContainer { }
260
260
261
- // Indexed array
261
+ // Static array
262
262
export class Array extends ContiguousContainer
263
263
{
264
264
constructor ( private _start : Expression , private _size : Expression ) {
@@ -291,7 +291,7 @@ export class Array extends ContiguousContainer
291
291
}
292
292
}
293
293
294
- // Indexed array with size defined by two pointers
294
+ // Dynamic array
295
295
export class DArray extends ContiguousContainer {
296
296
constructor ( private _start : Expression , private _finish : Expression ) {
297
297
super ( ) ;
@@ -318,6 +318,7 @@ export class DArray extends ContiguousContainer {
318
318
}
319
319
}
320
320
321
+ // Indexable/subscriptable array
321
322
export class IArray extends RandomAccessContainer
322
323
{
323
324
constructor ( private _element : Expression , private _size : Expression ) {
You can’t perform that action at this time.
0 commit comments