about summary refs log blame commit diff stats
path: root/baremetal/shell/read.mu
blob: e49fbbace548b7dc117d0097f8f08ab0a1f81f97 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                      
                                                                                  


                                                              





                                              

                         

                                      
# out is not allocated
fn read-cell in: (addr gap-buffer), out: (addr handle cell), trace: (addr trace) {
  var tokens-storage: (stream cell 0x100)
  var tokens/ecx: (addr stream cell) <- address tokens-storage
  tokenize in, tokens, trace
  var error?/eax: boolean <- has-errors? trace
  compare error?, 0/false
  {
    break-if-=
    return
  }
  # TODO: insert parens
  # TODO: transform infix
  parse-sexpression tokens, out, trace
}