Skip to content

Commit b757588

Browse files
committed
Alter comments
1 parent 9f2f058 commit b757588

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/loader.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export class Container {
258258
export class RandomAccessContainer extends Container {}
259259
export class ContiguousContainer extends RandomAccessContainer {}
260260

261-
// Indexed array
261+
// Static array
262262
export 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
295295
export 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
321322
export class IArray extends RandomAccessContainer
322323
{
323324
constructor(private _element: Expression, private _size: Expression) {

0 commit comments

Comments
 (0)