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 15ce977 commit e4c039eCopy full SHA for e4c039e
language.ts
@@ -278,6 +278,10 @@ namespace microcode {
278
defn.fixup()
279
return defn
280
}
281
+
282
+ public toString() {
283
+ return ""
284
+ }
285
286
287
export class PageDefn {
@@ -329,6 +333,10 @@ namespace microcode {
329
333
br.readByte()
330
334
331
335
336
337
338
339
332
340
341
342
export function PAGE_IDS() {
@@ -379,6 +387,11 @@ namespace microcode {
379
387
380
388
381
389
390
391
392
+ const res = this.pages.map(page => page.toString())
393
+ return res.map((ps, i) => `Page ${i + 1}\n${ps}`).join("\n")
394
382
395
383
396
384
397
function mkConstraints(): Constraints {
0 commit comments