diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-04-22 22:35:06 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-18 00:44:47 -0700 |
commit | 6f531f4d1def71ac5e00fc2e4b621d4a0dbfe46b (patch) | |
tree | 021257a193f118ea38775cd4633b4f5fec491dfa /apps | |
parent | 4ce9d7fdc5ddd9c6260c61f90135bd4ff3f32d31 (diff) | |
download | mu-6f531f4d1def71ac5e00fc2e4b621d4a0dbfe46b.tar.gz |
-
Diffstat (limited to 'apps')
-rw-r--r-- | apps/mu.subx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/mu.subx b/apps/mu.subx index 876097e6..9105ab2d 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -3131,8 +3131,8 @@ test-convert-array-of-user-defined-types: parse-mu: # in: (addr buffered-file) # pseudocode - # var curr-function: (addr (handle function)) = Program->functions - # var curr-type: (addr (handle typeinfo)) = Program->types + # var curr-function: (addr handle function) = Program->functions + # var curr-type: (addr handle typeinfo) = Program->types # var line: (stream byte 512) # var word-slice: slice # while true # line loop @@ -3147,7 +3147,7 @@ parse-mu: # in: (addr buffered-file) # else if slice-equal?(word-slice, "fn") # var new-function: (handle function) = allocate(function) # var vars: (stack (addr var) 256) - # populate-mu-function-header(in, new-function, vars) + # populate-mu-function-header(line, new-function, vars) # populate-mu-function-body(in, new-function, vars) # assert(vars->top == 0) # *curr-function = new-function |