CodeTools::AST << {

SymbolLiteral < Node {
  node_type symbol
  field value

  bytecode: |g| {
    pos(g)

    g.push_literal(self.value)
  }
}

}