File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ export class Container {
258258export class RandomAccessContainer extends Container { }
259259export class ContiguousContainer extends RandomAccessContainer { }
260260
261- // Indexed array
261+ // Static array
262262export class Array extends ContiguousContainer
263263{
264264 constructor ( private _start : Expression , private _size : Expression ) {
@@ -291,7 +291,7 @@ export class Array extends ContiguousContainer
291291 }
292292}
293293
294- // Indexed array with size defined by two pointers
294+ // Dynamic array
295295export class DArray extends ContiguousContainer {
296296 constructor ( private _start : Expression , private _finish : Expression ) {
297297 super ( ) ;
@@ -318,6 +318,7 @@ export class DArray extends ContiguousContainer {
318318 }
319319}
320320
321+ // Indexable/subscriptable array
321322export class IArray extends RandomAccessContainer
322323{
323324 constructor ( private _element : Expression , private _size : Expression ) {
You can’t perform that action at this time.
0 commit comments