Skip to content

Commit

Permalink
no need for getAssembly (commented out)
Browse files Browse the repository at this point in the history
  • Loading branch information
tballmsft committed Oct 11, 2023
1 parent 27ab521 commit 219cdd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jacs_opwriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ namespace jacs {

private oops(msg: string) {
try {
console.log(this.getAssembly())
// console.log(this.getAssembly())
} catch {}
oops(msg)
}
Expand Down
2 changes: 1 addition & 1 deletion jacs_topwriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace jacs {
this.writer.patchLabels()
}
toString() {
return this.writer.getAssembly()
return "" // this.writer.getAssembly()
}
addLocal(name: string) {
return new Variable(this.locals, CellKind.LOCAL, name)
Expand Down

0 comments on commit 219cdd1

Please sign in to comment.