diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-04-23 00:24:42 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-04-23 00:24:42 -0600 |
commit | a1c15f046183373baf5deb66e77188e656806fb7 (patch) | |
tree | fc1a7f584e67dc583d335f09d5271a45ff7d9df4 /submit/ast/Node.java | |
parent | 5f28f80c4e25a56cd444914c2f0b3da5e7fdb088 (diff) | |
download | cminus-main.tar.gz cminus-main.zip |
Diffstat (limited to 'submit/ast/Node.java')
-rw-r--r-- | submit/ast/Node.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/submit/ast/Node.java b/submit/ast/Node.java index 2eed788..cc6c2d5 100644 --- a/submit/ast/Node.java +++ b/submit/ast/Node.java @@ -5,7 +5,8 @@ import submit.RegisterAllocator; import submit.SymbolTable; public interface Node { - void toCminus(StringBuilder builder, final String prefix); + void toCminus(StringBuilder builder, final String prefix); - MIPSResult toMIPS(StringBuilder code, StringBuilder data, SymbolTable symbolTable, RegisterAllocator regAllocator); + MIPSResult toMIPS(StringBuilder code, StringBuilder data, + SymbolTable symbolTable, RegisterAllocator regAllocator); } |