2020-01-23 21:04:46 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-12-22 02:34:37 +01:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module parser
|
|
|
|
|
|
|
|
import (
|
2019-12-27 05:43:17 +01:00
|
|
|
v.scanner
|
|
|
|
v.ast
|
|
|
|
v.token
|
|
|
|
v.table
|
2020-02-03 07:02:54 +01:00
|
|
|
v.pref
|
2019-12-29 06:50:08 +01:00
|
|
|
term
|
2019-12-30 12:10:46 +01:00
|
|
|
os
|
2019-12-22 02:34:37 +01:00
|
|
|
)
|
2020-01-22 21:34:38 +01:00
|
|
|
|
2020-01-09 14:08:33 +01:00
|
|
|
const (
|
|
|
|
colored_output = term.can_show_color_on_stderr()
|
|
|
|
)
|
2020-02-05 10:00:11 +01:00
|
|
|
/*
|
2020-01-06 16:13:12 +01:00
|
|
|
type PrefixParseFn fn()ast.Expr
|
|
|
|
|
|
|
|
type InfixParseFn fn(e ast.Expr)ast.Expr
|
|
|
|
|
|
|
|
type PostfixParseFn fn()ast.Expr
|
2020-02-05 10:00:11 +01:00
|
|
|
*/
|
|
|
|
|
2020-01-06 16:13:12 +01:00
|
|
|
|
2019-12-22 02:34:37 +01:00
|
|
|
struct Parser {
|
2020-02-07 18:46:42 +01:00
|
|
|
scanner &scanner.Scanner
|
|
|
|
file_name string
|
2019-12-22 02:34:37 +01:00
|
|
|
mut:
|
2020-02-07 18:46:42 +01:00
|
|
|
tok token.Token
|
|
|
|
peek_tok token.Token
|
2019-12-28 09:43:22 +01:00
|
|
|
// vars []string
|
2020-02-07 18:46:42 +01:00
|
|
|
table &table.Table
|
2020-02-10 08:32:08 +01:00
|
|
|
return_type table.Type // current function's return type
|
2020-02-04 17:44:39 +01:00
|
|
|
// scope_level int
|
|
|
|
// var_idx int
|
2020-02-07 18:46:42 +01:00
|
|
|
is_c bool
|
2020-01-06 16:13:12 +01:00
|
|
|
//
|
2020-01-07 01:57:38 +01:00
|
|
|
// prefix_parse_fns []PrefixParseFn
|
2020-02-07 18:46:42 +01:00
|
|
|
inside_if bool
|
|
|
|
pref &pref.Preferences // Preferences shared from V struct
|
|
|
|
builtin_mod bool
|
|
|
|
mod string
|
|
|
|
unresolved []ast.Expr
|
|
|
|
unresolved_offset int
|
2020-02-10 20:33:34 +01:00
|
|
|
expected_type table.Type
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
|
|
|
|
2020-01-22 21:34:38 +01:00
|
|
|
// for tests
|
2019-12-28 14:11:05 +01:00
|
|
|
pub fn parse_stmt(text string, table &table.Table) ast.Stmt {
|
2019-12-28 09:15:32 +01:00
|
|
|
s := scanner.new_scanner(text)
|
2019-12-22 02:34:37 +01:00
|
|
|
mut p := Parser{
|
|
|
|
scanner: s
|
2019-12-26 11:27:35 +01:00
|
|
|
table: table
|
2020-02-07 22:10:48 +01:00
|
|
|
pref: &pref.Preferences{}
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
p.init_parse_fns()
|
2019-12-30 15:06:56 +01:00
|
|
|
p.read_first_token()
|
2019-12-28 14:11:05 +01:00
|
|
|
return p.stmt()
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
|
|
|
|
2020-01-01 10:15:05 +01:00
|
|
|
pub fn parse_file(path string, table &table.Table) ast.File {
|
2020-01-06 16:13:12 +01:00
|
|
|
println('parse_file("$path")')
|
2020-01-01 10:15:05 +01:00
|
|
|
text := os.read_file(path) or {
|
|
|
|
panic(err)
|
|
|
|
}
|
2019-12-28 14:11:05 +01:00
|
|
|
mut stmts := []ast.Stmt
|
2019-12-26 11:27:35 +01:00
|
|
|
mut p := Parser{
|
2019-12-28 14:11:05 +01:00
|
|
|
scanner: scanner.new_scanner(text)
|
2019-12-26 11:27:35 +01:00
|
|
|
table: table
|
2020-01-01 10:15:05 +01:00
|
|
|
file_name: path
|
2020-02-03 07:02:54 +01:00
|
|
|
pref: &pref.Preferences{}
|
2020-02-10 08:32:08 +01:00
|
|
|
unresolved_offset: table.unresolved_idxs.size
|
2019-12-26 11:27:35 +01:00
|
|
|
}
|
2019-12-28 14:11:05 +01:00
|
|
|
p.read_first_token()
|
2020-01-18 23:26:14 +01:00
|
|
|
// module decl
|
2020-01-22 21:34:38 +01:00
|
|
|
module_decl := if p.tok.kind == .key_module { p.module_decl() } else { ast.Module{name: 'main'
|
|
|
|
} }
|
2020-02-08 09:50:12 +01:00
|
|
|
p.mod = module_decl.name
|
|
|
|
p.builtin_mod = p.mod == 'builtin'
|
2020-01-18 23:26:14 +01:00
|
|
|
// imports
|
|
|
|
mut imports := []ast.Import
|
|
|
|
for p.tok.kind == .key_import {
|
|
|
|
imports << p.import_stmt()
|
|
|
|
}
|
|
|
|
// TODO: import only mode
|
2019-12-26 11:27:35 +01:00
|
|
|
for {
|
2019-12-28 09:43:22 +01:00
|
|
|
// res := s.scan()
|
2019-12-28 09:15:32 +01:00
|
|
|
if p.tok.kind == .eof {
|
2020-01-06 16:13:12 +01:00
|
|
|
println('EOF, breaking')
|
2019-12-26 11:27:35 +01:00
|
|
|
break
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
// println('stmt at ' + p.tok.str())
|
|
|
|
stmts << p.top_stmt()
|
2019-12-26 11:27:35 +01:00
|
|
|
}
|
2019-12-29 08:51:55 +01:00
|
|
|
// println('nr stmts = $stmts.len')
|
2019-12-28 14:11:05 +01:00
|
|
|
// println(stmts[0])
|
2019-12-30 12:10:46 +01:00
|
|
|
return ast.File{
|
2020-02-03 07:31:54 +01:00
|
|
|
path: path
|
2020-01-22 21:34:38 +01:00
|
|
|
mod: module_decl
|
2020-01-18 23:26:14 +01:00
|
|
|
imports: imports
|
2020-01-22 21:34:38 +01:00
|
|
|
stmts: stmts
|
2020-02-04 12:03:12 +01:00
|
|
|
unresolved: p.unresolved
|
2019-12-28 14:11:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 12:10:46 +01:00
|
|
|
pub fn parse_files(paths []string, table &table.Table) []ast.File {
|
|
|
|
mut files := []ast.File
|
|
|
|
for path in paths {
|
2020-01-02 08:37:41 +01:00
|
|
|
files << parse_file(path, table)
|
2019-12-30 12:10:46 +01:00
|
|
|
}
|
|
|
|
return files
|
|
|
|
}
|
|
|
|
|
2020-01-07 01:57:38 +01:00
|
|
|
pub fn (p &Parser) init_parse_fns() {
|
|
|
|
// p.prefix_parse_fns = make(100, 100, sizeof(PrefixParseFn))
|
2020-01-06 16:13:12 +01:00
|
|
|
// p.prefix_parse_fns[token.Kind.name] = parse_name
|
2020-01-07 01:57:38 +01:00
|
|
|
println('')
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
|
2019-12-28 14:11:05 +01:00
|
|
|
pub fn (p mut Parser) read_first_token() {
|
|
|
|
// need to call next() twice to get peek token and current token
|
|
|
|
p.next()
|
|
|
|
p.next()
|
2019-12-26 11:27:35 +01:00
|
|
|
}
|
|
|
|
|
2019-12-28 14:11:05 +01:00
|
|
|
pub fn (p mut Parser) parse_block() []ast.Stmt {
|
2020-02-04 17:44:39 +01:00
|
|
|
p.table.open_scope()
|
2019-12-31 19:42:16 +01:00
|
|
|
p.check(.lcbr)
|
2019-12-28 14:11:05 +01:00
|
|
|
mut stmts := []ast.Stmt
|
2020-01-06 16:13:12 +01:00
|
|
|
if p.tok.kind != .rcbr {
|
|
|
|
for {
|
|
|
|
stmts << p.stmt()
|
|
|
|
// p.warn('after stmt(): tok=$p.tok.str()')
|
|
|
|
if p.tok.kind in [.eof, .rcbr] {
|
|
|
|
break
|
|
|
|
}
|
2019-12-27 13:57:49 +01:00
|
|
|
}
|
|
|
|
}
|
2019-12-31 19:42:16 +01:00
|
|
|
p.check(.rcbr)
|
2020-02-04 17:44:39 +01:00
|
|
|
p.table.close_scope()
|
2019-12-28 11:02:06 +01:00
|
|
|
// println('nr exprs in block = $exprs.len')
|
2019-12-28 14:11:05 +01:00
|
|
|
return stmts
|
2019-12-27 13:57:49 +01:00
|
|
|
}
|
|
|
|
|
2019-12-22 02:34:37 +01:00
|
|
|
fn (p mut Parser) next() {
|
2019-12-28 09:15:32 +01:00
|
|
|
p.tok = p.peek_tok
|
|
|
|
p.peek_tok = p.scanner.scan()
|
2019-12-24 18:54:43 +01:00
|
|
|
// println(p.tok.str())
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
|
|
|
|
2019-12-31 10:53:30 +01:00
|
|
|
fn (p mut Parser) check(expected token.Kind) {
|
2019-12-28 09:15:32 +01:00
|
|
|
if p.tok.kind != expected {
|
|
|
|
s := 'syntax error: unexpected `${p.tok.kind.str()}`, expecting `${expected.str()}`'
|
2019-12-29 07:24:17 +01:00
|
|
|
p.error(s)
|
2019-12-27 13:57:49 +01:00
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (p mut Parser) check_name() string {
|
2019-12-28 09:15:32 +01:00
|
|
|
name := p.tok.lit
|
2019-12-27 13:57:49 +01:00
|
|
|
p.check(.name)
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
2020-01-06 16:13:12 +01:00
|
|
|
pub fn (p mut Parser) top_stmt() ast.Stmt {
|
2019-12-28 09:15:32 +01:00
|
|
|
match p.tok.kind {
|
2019-12-31 19:42:16 +01:00
|
|
|
.key_pub {
|
|
|
|
match p.peek_tok.kind {
|
2020-01-18 23:26:14 +01:00
|
|
|
.key_const {
|
|
|
|
return p.const_decl()
|
|
|
|
}
|
2019-12-31 19:42:16 +01:00
|
|
|
.key_fn {
|
|
|
|
return p.fn_decl()
|
|
|
|
}
|
|
|
|
.key_struct, .key_union, .key_interface {
|
|
|
|
return p.struct_decl()
|
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
.key_enum {
|
|
|
|
return p.enum_decl()
|
|
|
|
}
|
|
|
|
.key_type {
|
|
|
|
return p.type_decl()
|
|
|
|
}
|
2019-12-31 19:42:16 +01:00
|
|
|
else {
|
|
|
|
p.error('wrong pub keyword usage')
|
|
|
|
return ast.Stmt{}
|
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
}
|
2020-02-03 07:02:54 +01:00
|
|
|
.lsbr {
|
|
|
|
return p.attr()
|
|
|
|
}
|
|
|
|
.key_global {
|
|
|
|
return p.global_decl()
|
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
.key_const {
|
|
|
|
return p.const_decl()
|
2019-12-31 19:42:16 +01:00
|
|
|
}
|
2019-12-28 09:43:22 +01:00
|
|
|
.key_fn {
|
|
|
|
return p.fn_decl()
|
|
|
|
}
|
2019-12-30 06:16:59 +01:00
|
|
|
.key_struct {
|
|
|
|
return p.struct_decl()
|
|
|
|
}
|
2020-02-03 07:02:54 +01:00
|
|
|
.dollar {
|
|
|
|
return p.comp_if()
|
2020-01-07 13:10:05 +01:00
|
|
|
}
|
2020-02-04 09:54:15 +01:00
|
|
|
.hash {
|
|
|
|
return p.hash()
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
else {
|
2020-02-04 09:54:15 +01:00
|
|
|
p.error('parser: bad top level statement')
|
2020-02-03 07:02:54 +01:00
|
|
|
return ast.Stmt{}
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (p mut Parser) stmt() ast.Stmt {
|
|
|
|
match p.tok.kind {
|
2019-12-28 11:02:06 +01:00
|
|
|
.key_mut {
|
|
|
|
return p.var_decl()
|
|
|
|
}
|
2019-12-30 06:16:59 +01:00
|
|
|
.key_for {
|
|
|
|
return p.for_statement()
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
.key_return {
|
|
|
|
return p.return_stmt()
|
|
|
|
}
|
2020-02-03 07:02:54 +01:00
|
|
|
.dollar {
|
|
|
|
return p.comp_if()
|
|
|
|
}
|
2020-02-04 08:29:50 +01:00
|
|
|
.key_continue, .key_break {
|
|
|
|
tok := p.tok
|
|
|
|
p.next()
|
|
|
|
return ast.BranchStmt{
|
|
|
|
tok: p.tok
|
|
|
|
}
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
.key_unsafe {
|
|
|
|
p.next()
|
|
|
|
p.parse_block()
|
|
|
|
return ast.Stmt{}
|
|
|
|
}
|
2020-02-11 10:26:46 +01:00
|
|
|
.key_defer {
|
|
|
|
p.next()
|
|
|
|
stmts := p.parse_block()
|
|
|
|
return ast.DeferStmt{
|
|
|
|
stmts: stmts
|
|
|
|
}
|
|
|
|
}
|
2019-12-28 14:11:05 +01:00
|
|
|
else {
|
2020-01-06 16:13:12 +01:00
|
|
|
// `x := ...`
|
2020-02-06 17:38:02 +01:00
|
|
|
// if p.tok.kind == .name && p.peek_tok.kind in [.decl_assign, .comma] {
|
|
|
|
if p.tok.kind == .name && p.peek_tok.kind in [.decl_assign] {
|
2020-01-06 16:13:12 +01:00
|
|
|
return p.var_decl()
|
|
|
|
}
|
2020-02-06 17:38:02 +01:00
|
|
|
if p.tok.kind == .name && p.peek_tok.kind in [.comma] {
|
|
|
|
return p.assign_stmt()
|
|
|
|
}
|
2020-02-06 13:57:35 +01:00
|
|
|
expr,typ := p.expr(0)
|
2019-12-28 14:11:05 +01:00
|
|
|
return ast.ExprStmt{
|
|
|
|
expr: expr
|
2020-02-06 13:57:35 +01:00
|
|
|
typ: typ
|
2019-12-28 14:11:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-03 07:02:54 +01:00
|
|
|
pub fn (p mut Parser) comp_if() ast.CompIf {
|
|
|
|
p.next()
|
|
|
|
p.check(.key_if)
|
|
|
|
if p.tok.kind == .not {
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
p.check_name()
|
|
|
|
p.parse_block()
|
|
|
|
if p.tok.kind == .dollar && p.peek_tok.kind == .key_else {
|
|
|
|
p.next()
|
|
|
|
p.check(.key_else)
|
|
|
|
p.parse_block()
|
|
|
|
}
|
|
|
|
return ast.CompIf{}
|
|
|
|
}
|
|
|
|
|
2020-01-06 16:13:12 +01:00
|
|
|
pub fn (p mut Parser) assign_expr(left ast.Expr) ast.AssignExpr {
|
|
|
|
op := p.tok.kind
|
|
|
|
p.next()
|
2020-01-22 21:34:38 +01:00
|
|
|
val,_ := p.expr(0)
|
2020-01-06 16:13:12 +01:00
|
|
|
node := ast.AssignExpr{
|
|
|
|
left: left
|
|
|
|
val: val
|
2020-01-18 23:26:14 +01:00
|
|
|
op: op
|
|
|
|
pos: p.tok.position()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
2020-02-03 07:02:54 +01:00
|
|
|
fn (p mut Parser) attr() ast.Attr {
|
|
|
|
p.check(.lsbr)
|
|
|
|
name := p.check_name()
|
|
|
|
p.check(.rsbr)
|
|
|
|
return ast.Attr{
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 23:19:50 +01:00
|
|
|
/*
|
|
|
|
|
2020-02-02 14:31:54 +01:00
|
|
|
fn (p mut Parser) range_expr(low ast.Expr) ast.Expr {
|
|
|
|
// ,table.Type) {
|
2020-02-05 10:00:11 +01:00
|
|
|
if p.tok.kind != .dotdot {
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
p.check(.dotdot)
|
2020-02-07 07:34:18 +01:00
|
|
|
mut high := ast.Expr{}
|
|
|
|
if p.tok.kind != .rsbr {
|
|
|
|
high,_ = p.expr(0)
|
|
|
|
// if typ.typ.kind != .int {
|
|
|
|
// p.error('non-integer index `$typ.typ.name`')
|
|
|
|
// }
|
2020-02-02 14:31:54 +01:00
|
|
|
}
|
|
|
|
node := ast.RangeExpr{
|
|
|
|
low: low
|
|
|
|
high: high
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
*/
|
2020-02-02 14:31:54 +01:00
|
|
|
|
2020-01-06 16:13:12 +01:00
|
|
|
/*
|
2019-12-28 19:16:04 +01:00
|
|
|
pub fn (p mut Parser) assign_stmt() ast.AssignStmt {
|
2019-12-29 06:50:08 +01:00
|
|
|
name := p.tok.lit
|
2019-12-29 07:24:17 +01:00
|
|
|
// println('looking for $name')
|
2019-12-29 06:50:08 +01:00
|
|
|
var := p.table.find_var(name) or {
|
2020-01-06 16:13:12 +01:00
|
|
|
p.error('assign unknown variable `$name`')
|
2019-12-29 06:50:08 +01:00
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
if !var.is_mut {
|
|
|
|
p.error('`$var.name` is immutable, declare it with `mut $var.name := ...`')
|
|
|
|
}
|
2019-12-28 19:16:04 +01:00
|
|
|
left_expr,left_type := p.expr(0)
|
|
|
|
op := p.tok.kind
|
2019-12-29 07:24:17 +01:00
|
|
|
// println('assignn_stmt() ' + op.str())
|
2019-12-28 19:16:04 +01:00
|
|
|
p.next()
|
|
|
|
right_expr,right_type := p.expr(0)
|
2020-01-18 23:26:14 +01:00
|
|
|
if !p.table.check(left_type, right_type) {
|
2019-12-29 08:51:55 +01:00
|
|
|
p.error('oops')
|
|
|
|
}
|
2019-12-28 19:16:04 +01:00
|
|
|
return ast.AssignStmt{
|
|
|
|
left: left_expr
|
|
|
|
right: right_expr
|
|
|
|
op: op
|
|
|
|
}
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
*/
|
|
|
|
|
2019-12-28 19:16:04 +01:00
|
|
|
|
2019-12-29 06:50:08 +01:00
|
|
|
pub fn (p &Parser) error(s string) {
|
2020-01-07 01:57:38 +01:00
|
|
|
print_backtrace()
|
2020-02-07 07:34:18 +01:00
|
|
|
mut path := p.file_name
|
|
|
|
// Get relative path
|
|
|
|
workdir := os.getwd() + os.path_separator
|
|
|
|
if path.starts_with(workdir) {
|
|
|
|
path = path.replace(workdir, '')
|
|
|
|
}
|
2020-02-11 10:26:46 +01:00
|
|
|
final_msg_line := '$path:$p.tok.line_nr: error: $s'
|
2020-01-09 14:08:33 +01:00
|
|
|
if colored_output {
|
|
|
|
eprintln(term.bold(term.red(final_msg_line)))
|
2020-01-22 21:34:38 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-01-09 14:08:33 +01:00
|
|
|
eprintln(final_msg_line)
|
|
|
|
}
|
2019-12-29 06:50:08 +01:00
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
|
2020-01-02 08:30:15 +01:00
|
|
|
pub fn (p &Parser) error_at_line(s string, line_nr int) {
|
2020-01-09 14:08:33 +01:00
|
|
|
final_msg_line := '$p.file_name:$line_nr: error: $s'
|
|
|
|
if colored_output {
|
|
|
|
eprintln(term.bold(term.red(final_msg_line)))
|
2020-01-22 21:34:38 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-01-09 14:08:33 +01:00
|
|
|
eprintln(final_msg_line)
|
|
|
|
}
|
2020-01-02 08:30:15 +01:00
|
|
|
exit(1)
|
2019-12-30 09:38:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-02 08:30:15 +01:00
|
|
|
pub fn (p &Parser) warn(s string) {
|
2020-01-09 14:08:33 +01:00
|
|
|
final_msg_line := '$p.file_name:$p.tok.line_nr: warning: $s'
|
|
|
|
if colored_output {
|
|
|
|
eprintln(term.bold(term.blue(final_msg_line)))
|
2020-01-22 21:34:38 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-01-09 14:08:33 +01:00
|
|
|
eprintln(final_msg_line)
|
|
|
|
}
|
2019-12-29 08:51:55 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
pub fn (p mut Parser) parse_ident(is_c bool) (ast.Ident,table.Type) {
|
2020-02-06 17:38:02 +01:00
|
|
|
mut node := ast.Ident{}
|
2020-02-10 08:32:08 +01:00
|
|
|
mut typ := table.void_type
|
2020-02-06 17:38:02 +01:00
|
|
|
// p.warn('name ')
|
|
|
|
// left := p.parse_ident()
|
|
|
|
name := p.check_name()
|
|
|
|
mut ident := ast.Ident{
|
|
|
|
name: name
|
2020-02-10 08:32:08 +01:00
|
|
|
is_c: is_c
|
2020-02-06 17:38:02 +01:00
|
|
|
}
|
|
|
|
mut known_var := false
|
|
|
|
if var := p.table.find_var(name) {
|
|
|
|
known_var = true
|
|
|
|
typ = var.typ
|
2020-02-07 07:34:18 +01:00
|
|
|
}
|
2020-02-06 17:38:02 +01:00
|
|
|
// variable
|
|
|
|
if known_var || p.tok.kind in [.comma, .decl_assign, .assign] {
|
|
|
|
// println('#### IDENT: $var.name: $var.typ.typ.name - $var.typ.idx')
|
|
|
|
ident.kind = .variable
|
|
|
|
ident.info = ast.IdentVar{
|
|
|
|
typ: typ
|
|
|
|
// name: ident.name
|
|
|
|
// expr: p.expr(0)// var.expr
|
2020-02-07 07:34:18 +01:00
|
|
|
|
2020-02-06 17:38:02 +01:00
|
|
|
}
|
2020-02-07 07:34:18 +01:00
|
|
|
return ident,typ
|
|
|
|
}
|
|
|
|
else {
|
2020-02-06 17:38:02 +01:00
|
|
|
if is_c {
|
2020-02-10 08:32:08 +01:00
|
|
|
typ = table.int_type
|
2020-02-06 17:38:02 +01:00
|
|
|
ident.info = ast.IdentVar{
|
|
|
|
typ: typ
|
|
|
|
// name: ident.name
|
2020-02-07 07:34:18 +01:00
|
|
|
|
2020-02-06 17:38:02 +01:00
|
|
|
}
|
|
|
|
return ident,typ
|
|
|
|
}
|
|
|
|
// const
|
|
|
|
if c := p.table.find_const(name) {
|
|
|
|
typ = c.typ
|
|
|
|
ident.kind = .constant
|
|
|
|
ident.info = ast.IdentVar{
|
|
|
|
typ: typ
|
|
|
|
// name: ident.name
|
2020-02-07 07:34:18 +01:00
|
|
|
|
2020-02-06 17:38:02 +01:00
|
|
|
}
|
|
|
|
node = ident
|
|
|
|
}else{
|
|
|
|
// Function object (not a call), e.g. `onclick(my_click)`
|
|
|
|
p.table.find_fn(name) or {
|
2020-02-07 07:34:18 +01:00
|
|
|
// ident.info = ast.IdentVar
|
2020-02-10 18:42:53 +01:00
|
|
|
node = ast.Ident{
|
|
|
|
kind: .blank_ident
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
return node,typ
|
|
|
|
// p.error('parse_ident: unknown identifier `$name`')
|
2020-02-06 17:38:02 +01:00
|
|
|
}
|
|
|
|
// p.next()
|
|
|
|
}
|
|
|
|
}
|
2020-02-07 07:34:18 +01:00
|
|
|
return node,typ
|
2020-02-06 17:38:02 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
pub fn (p mut Parser) name_expr() (ast.Expr,table.Type) {
|
2020-01-06 16:13:12 +01:00
|
|
|
mut node := ast.Expr{}
|
2020-02-10 08:32:08 +01:00
|
|
|
mut typ := table.void_type
|
2020-02-04 12:03:12 +01:00
|
|
|
// mut typ := table.unresolved_type
|
2020-02-03 07:02:54 +01:00
|
|
|
is_c := p.tok.lit == 'C' && p.peek_tok.kind == .dot
|
|
|
|
if is_c {
|
2020-01-07 00:14:19 +01:00
|
|
|
p.next()
|
|
|
|
p.check(.dot)
|
|
|
|
}
|
2020-02-04 20:22:00 +01:00
|
|
|
else if p.tok.lit in ['strings', 'strconv'] {
|
2020-01-07 16:06:37 +01:00
|
|
|
p.next()
|
|
|
|
p.check(.dot)
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
if p.tok.lit == 'map' && p.peek_tok.kind == .lsbr {
|
2020-02-08 16:59:57 +01:00
|
|
|
map_type := p.parse_map_type(0)
|
2020-02-05 10:00:11 +01:00
|
|
|
return node,typ
|
|
|
|
}
|
2020-02-07 21:29:28 +01:00
|
|
|
// fn call or type cast
|
2020-01-06 16:13:12 +01:00
|
|
|
if p.peek_tok.kind == .lpar {
|
2020-02-07 21:29:28 +01:00
|
|
|
name := p.tok.lit
|
|
|
|
// type cast. TODO: finish
|
2020-02-10 20:33:34 +01:00
|
|
|
// if name in table.builtin_type_names {
|
2020-02-11 10:26:46 +01:00
|
|
|
if name in p.table.type_idxs && !(name in ['stat', 'sigaction']) {
|
|
|
|
// TODO handle C.stat()
|
2020-02-10 14:43:17 +01:00
|
|
|
to_typ := p.parse_type()
|
|
|
|
p.check(.lpar)
|
|
|
|
mut expr := ast.Expr{}
|
2020-02-10 20:33:34 +01:00
|
|
|
expr,_ = p.expr(0)
|
|
|
|
// TODO, string(b, len)
|
2020-02-10 14:43:17 +01:00
|
|
|
if table.type_idx(to_typ) == table.string_type_idx && p.tok.kind == .comma {
|
|
|
|
p.check(.comma)
|
|
|
|
p.expr(0) // len
|
2020-02-07 21:29:28 +01:00
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
p.check(.rpar)
|
|
|
|
node = ast.CastExpr{
|
|
|
|
typ: to_typ
|
|
|
|
expr: expr
|
|
|
|
}
|
2020-02-10 20:33:34 +01:00
|
|
|
return node,to_typ
|
2020-02-07 21:29:28 +01:00
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
// fn call
|
2020-02-07 21:29:28 +01:00
|
|
|
else {
|
|
|
|
println('calling $p.tok.lit')
|
|
|
|
x,ti2 := p.call_expr() // TODO `node,typ :=` should work
|
|
|
|
node = x
|
|
|
|
typ = ti2
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
// struct init
|
2020-02-10 23:19:50 +01:00
|
|
|
else if p.peek_tok.kind == .lcbr && (p.tok.lit[0].is_capital() || is_c || p.tok.lit in ['array', 'string', 'ustring', 'mapnode', 'map']) && !p.tok.lit[p.tok.lit.len - 1].is_capital() {
|
2020-02-05 10:00:11 +01:00
|
|
|
// || p.table.known_type(p.tok.lit)) {
|
2020-02-03 07:02:54 +01:00
|
|
|
typ = p.parse_type()
|
2020-01-22 21:34:38 +01:00
|
|
|
// p.warn('struct init typ=$typ.name')
|
2020-01-06 16:13:12 +01:00
|
|
|
p.check(.lcbr)
|
|
|
|
mut field_names := []string
|
|
|
|
mut exprs := []ast.Expr
|
|
|
|
for p.tok.kind != .rcbr {
|
|
|
|
field_name := p.check_name()
|
|
|
|
field_names << field_name
|
|
|
|
p.check(.colon)
|
|
|
|
expr,_ := p.expr(0)
|
|
|
|
exprs << expr
|
|
|
|
}
|
|
|
|
node = ast.StructInit{
|
2020-02-06 13:57:35 +01:00
|
|
|
typ: typ
|
2020-01-06 16:13:12 +01:00
|
|
|
exprs: exprs
|
|
|
|
fields: field_names
|
2020-01-18 23:26:14 +01:00
|
|
|
pos: p.tok.position()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
p.check(.rcbr)
|
|
|
|
}
|
|
|
|
else {
|
2020-02-06 17:38:02 +01:00
|
|
|
mut ident := ast.Ident{}
|
2020-02-07 07:34:18 +01:00
|
|
|
ident,typ = p.parse_ident(is_c)
|
2020-02-06 17:38:02 +01:00
|
|
|
node = ident
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-01-22 21:34:38 +01:00
|
|
|
return node,typ
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
pub fn (p mut Parser) expr(precedence int) (ast.Expr,table.Type) {
|
2020-01-22 21:34:38 +01:00
|
|
|
// println('\n\nparser.expr()')
|
2020-02-10 08:32:08 +01:00
|
|
|
mut typ := table.void_type
|
2019-12-28 14:11:05 +01:00
|
|
|
mut node := ast.Expr{}
|
2020-01-06 16:13:12 +01:00
|
|
|
// Prefix
|
2019-12-28 14:11:05 +01:00
|
|
|
match p.tok.kind {
|
2019-12-28 09:15:32 +01:00
|
|
|
.name {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.name_expr()
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
.str {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.string_expr()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-02-10 20:33:34 +01:00
|
|
|
.dot {
|
|
|
|
// .enum_val
|
|
|
|
node,typ = p.enum_val()
|
|
|
|
}
|
2020-02-04 09:54:15 +01:00
|
|
|
.chartoken {
|
2020-02-10 08:32:08 +01:00
|
|
|
typ = table.byte_type
|
2020-02-04 09:54:15 +01:00
|
|
|
node = ast.CharLiteral{
|
|
|
|
val: p.tok.lit
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
// -1, -a, !x, &x, ~x
|
|
|
|
.minus, .amp, .mul, .not, .bit_not {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.prefix_expr()
|
2019-12-30 09:38:12 +01:00
|
|
|
}
|
2020-01-07 12:14:10 +01:00
|
|
|
// .amp {
|
|
|
|
// p.next()
|
|
|
|
// }
|
2019-12-30 06:16:59 +01:00
|
|
|
.key_true, .key_false {
|
2019-12-29 08:51:55 +01:00
|
|
|
node = ast.BoolLiteral{
|
2019-12-30 06:16:59 +01:00
|
|
|
val: p.tok.kind == .key_true
|
2019-12-29 08:51:55 +01:00
|
|
|
}
|
2020-02-10 08:32:08 +01:00
|
|
|
typ = table.bool_type
|
2019-12-29 08:51:55 +01:00
|
|
|
p.next()
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
.key_match {
|
2020-02-10 20:33:34 +01:00
|
|
|
node,typ = p.match_expr()
|
2020-02-05 10:00:11 +01:00
|
|
|
}
|
2019-12-28 09:43:22 +01:00
|
|
|
.number {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.parse_number_literal()
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
2019-12-25 13:39:58 +01:00
|
|
|
.lpar {
|
2019-12-31 10:53:30 +01:00
|
|
|
p.check(.lpar)
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.expr(0)
|
2019-12-28 11:02:06 +01:00
|
|
|
p.check(.rpar)
|
2019-12-27 13:57:49 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
.key_if {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.if_expr()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
.lsbr {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.array_init()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
.key_none {
|
|
|
|
p.next()
|
|
|
|
}
|
2020-02-04 09:54:15 +01:00
|
|
|
.key_sizeof {
|
|
|
|
p.next()
|
|
|
|
p.check(.lpar)
|
|
|
|
p.next()
|
|
|
|
p.check(.rpar)
|
2020-02-10 08:32:08 +01:00
|
|
|
typ = table.int_type
|
2020-02-04 09:54:15 +01:00
|
|
|
}
|
2020-02-11 00:07:01 +01:00
|
|
|
// Map or `{ x | foo:bar, a:10 }`
|
|
|
|
.lcbr {
|
|
|
|
p.next()
|
|
|
|
p.check_name()
|
|
|
|
p.check(.pipe)
|
|
|
|
for {
|
|
|
|
p.check_name()
|
|
|
|
p.check(.colon)
|
|
|
|
p.expr(0)
|
|
|
|
if p.tok.kind == .comma {
|
|
|
|
p.check(.comma)
|
|
|
|
}
|
|
|
|
if p.tok.kind == .rcbr {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p.check(.rcbr)
|
|
|
|
}
|
2019-12-27 13:57:49 +01:00
|
|
|
else {
|
2020-02-04 08:29:50 +01:00
|
|
|
p.error('pexpr(): bad token `$p.tok.str()`')
|
2019-12-26 11:27:35 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
// Infix
|
|
|
|
for precedence < p.tok.precedence() {
|
|
|
|
if p.tok.kind.is_assign() {
|
|
|
|
node = p.assign_expr(node)
|
|
|
|
}
|
|
|
|
else if p.tok.kind == .dot {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.dot_expr(node, typ)
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-01-07 12:14:10 +01:00
|
|
|
else if p.tok.kind == .lsbr {
|
2020-02-11 12:59:40 +01:00
|
|
|
//node = p.index_expr(node) // , typ)
|
|
|
|
ie_node,ie_typ := p.index_expr(node, typ)
|
|
|
|
node = ie_node
|
|
|
|
typ = ie_typ
|
2020-01-07 12:14:10 +01:00
|
|
|
}
|
2020-02-07 09:19:45 +01:00
|
|
|
else if p.tok.kind == .key_as {
|
|
|
|
p.next()
|
|
|
|
typ = p.parse_type()
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
else if p.tok.kind.is_infix() {
|
2020-01-22 21:34:38 +01:00
|
|
|
node,typ = p.infix_expr(node)
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-01-07 12:14:10 +01:00
|
|
|
// Postfix
|
2020-01-06 16:13:12 +01:00
|
|
|
else if p.tok.kind in [.inc, .dec] {
|
|
|
|
node = ast.PostfixExpr{
|
|
|
|
op: p.tok.kind
|
|
|
|
expr: node
|
2019-12-24 18:54:43 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
p.next()
|
2020-01-22 21:34:38 +01:00
|
|
|
return node,typ
|
2019-12-25 13:39:58 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
else {
|
2020-01-22 21:34:38 +01:00
|
|
|
return node,typ
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-22 21:34:38 +01:00
|
|
|
return node,typ
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) prefix_expr() (ast.Expr,table.Type) {
|
2020-01-06 16:13:12 +01:00
|
|
|
op := p.tok.kind
|
|
|
|
p.next()
|
2020-02-06 13:57:35 +01:00
|
|
|
right,typ := p.expr(1)
|
2020-01-06 16:13:12 +01:00
|
|
|
mut expr := ast.Expr{}
|
|
|
|
expr = ast.PrefixExpr{
|
|
|
|
op: op
|
|
|
|
right: right
|
|
|
|
}
|
2020-02-06 13:57:35 +01:00
|
|
|
return expr,typ
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
|
2020-02-11 12:59:40 +01:00
|
|
|
fn (p mut Parser) index_expr(left ast.Expr, left_type table.Type) (ast.IndexExpr,table.Type) {
|
2020-02-10 23:19:50 +01:00
|
|
|
// left == `a` in `a[0]`
|
2020-02-02 14:31:54 +01:00
|
|
|
p.next() // [
|
2020-02-10 23:19:50 +01:00
|
|
|
if p.tok.kind == .dotdot {
|
|
|
|
// [..end]
|
|
|
|
p.next()
|
|
|
|
high,_ := p.expr(0)
|
|
|
|
p.check(.rsbr)
|
|
|
|
return ast.IndexExpr{
|
|
|
|
left: left
|
|
|
|
pos: p.tok.position()
|
|
|
|
index: ast.RangeExpr{
|
|
|
|
low: ast.Expr{}
|
|
|
|
high: high
|
|
|
|
}
|
2020-02-11 12:59:40 +01:00
|
|
|
},left_type // TODO: return correct type
|
2020-02-02 14:31:54 +01:00
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
expr,_ := p.expr(0) // `[expr]` or `[expr..]`
|
|
|
|
if p.tok.kind == .dotdot {
|
|
|
|
// [start..end] or [start..]
|
|
|
|
p.check(.dotdot)
|
|
|
|
mut high := ast.Expr{}
|
|
|
|
if p.tok.kind != .rsbr {
|
|
|
|
high,_ = p.expr(0)
|
|
|
|
}
|
|
|
|
p.check(.rsbr)
|
|
|
|
return ast.IndexExpr{
|
|
|
|
left: left
|
|
|
|
pos: p.tok.position()
|
|
|
|
index: ast.RangeExpr{
|
|
|
|
low: expr
|
|
|
|
high: high
|
|
|
|
}
|
2020-02-11 12:59:40 +01:00
|
|
|
},left_type // TODO: return correct type
|
|
|
|
}
|
|
|
|
// get the element type
|
|
|
|
mut typ := left_type
|
|
|
|
left_type_sym := p.table.get_type_symbol(left_type)
|
|
|
|
if left_type_sym.kind == .array {
|
|
|
|
info := left_type_sym.info as table.Array
|
|
|
|
typ = info.elem_type
|
2020-02-02 14:31:54 +01:00
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
// [expr]
|
2020-01-07 12:14:10 +01:00
|
|
|
p.check(.rsbr)
|
2020-02-10 23:19:50 +01:00
|
|
|
return ast.IndexExpr{
|
2020-01-07 12:14:10 +01:00
|
|
|
left: left
|
2020-02-10 23:19:50 +01:00
|
|
|
index: expr
|
2020-02-03 11:29:50 +01:00
|
|
|
pos: p.tok.position()
|
2020-02-11 12:59:40 +01:00
|
|
|
},typ
|
2020-01-07 12:14:10 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 14:42:57 +01:00
|
|
|
fn (p mut Parser) filter(typ table.Type) {
|
|
|
|
p.table.register_var(table.Var{
|
|
|
|
name: 'it'
|
|
|
|
typ: typ
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) dot_expr(left ast.Expr, left_type table.Type) (ast.Expr,table.Type) {
|
2020-01-06 16:13:12 +01:00
|
|
|
p.next()
|
|
|
|
field_name := p.check_name()
|
2020-02-10 14:42:57 +01:00
|
|
|
if field_name == 'filter' {
|
|
|
|
p.table.open_scope()
|
|
|
|
p.filter(left_type)
|
|
|
|
}
|
2020-01-07 01:08:24 +01:00
|
|
|
// Method call
|
|
|
|
if p.tok.kind == .lpar {
|
|
|
|
p.next()
|
|
|
|
args := p.call_args()
|
2020-02-04 17:44:39 +01:00
|
|
|
if p.tok.kind == .key_orelse {
|
|
|
|
p.next()
|
|
|
|
p.parse_block()
|
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
mcall_expr := ast.MethodCallExpr{
|
2020-01-07 01:08:24 +01:00
|
|
|
expr: left
|
|
|
|
name: field_name
|
|
|
|
args: args
|
2020-01-18 23:26:14 +01:00
|
|
|
pos: p.tok.position()
|
2020-01-07 01:08:24 +01:00
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
mut node := ast.Expr{}
|
|
|
|
node = mcall_expr
|
2020-02-10 08:32:08 +01:00
|
|
|
// typ := p.add_unresolved('${left_type.typ.name}.${field_name}()', mcall_expr)
|
|
|
|
typ := p.add_unresolved('${table.type_idx(left_type)}.${field_name}()', mcall_expr)
|
2020-02-06 13:57:35 +01:00
|
|
|
return node,typ
|
2020-01-08 10:19:12 +01:00
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
sel_expr := ast.SelectorExpr{
|
2020-01-06 16:13:12 +01:00
|
|
|
expr: left
|
|
|
|
field: field_name
|
2020-01-18 23:26:14 +01:00
|
|
|
pos: p.tok.position()
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
2020-02-10 08:32:08 +01:00
|
|
|
// typ := p.add_unresolved('${left_type.typ.name}.$field_name', sel_expr)
|
|
|
|
typ := p.add_unresolved('${table.type_idx(left_type)}.$field_name', sel_expr)
|
2020-01-18 23:26:14 +01:00
|
|
|
mut node := ast.Expr{}
|
|
|
|
node = sel_expr
|
2020-02-10 14:42:57 +01:00
|
|
|
if field_name == 'filter' {
|
|
|
|
p.table.close_scope()
|
|
|
|
}
|
2020-02-06 13:57:35 +01:00
|
|
|
return node,typ
|
2019-12-24 18:54:43 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) infix_expr(left ast.Expr) (ast.Expr,table.Type) {
|
2020-01-06 16:13:12 +01:00
|
|
|
op := p.tok.kind
|
|
|
|
// mut typ := p.
|
|
|
|
// println('infix op=$op.str()')
|
|
|
|
precedence := p.tok.precedence()
|
|
|
|
p.next()
|
2020-02-06 13:57:35 +01:00
|
|
|
right,mut typ := p.expr(precedence)
|
2020-01-06 16:13:12 +01:00
|
|
|
if op.is_relational() {
|
2020-02-10 08:32:08 +01:00
|
|
|
typ = table.bool_type
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
mut expr := ast.Expr{}
|
2020-01-22 21:34:38 +01:00
|
|
|
expr = ast.InfixExpr{
|
2020-01-06 16:13:12 +01:00
|
|
|
left: left
|
|
|
|
right: right
|
2020-02-06 13:57:35 +01:00
|
|
|
right_type: typ
|
2020-01-18 23:26:14 +01:00
|
|
|
op: op
|
|
|
|
pos: p.tok.position()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-02-06 13:57:35 +01:00
|
|
|
return expr,typ
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Implementation of Pratt Precedence
|
2020-02-04 08:29:50 +01:00
|
|
|
/*
|
2020-01-03 11:36:17 +01:00
|
|
|
[inline]
|
|
|
|
fn (p &Parser) is_addative() bool {
|
|
|
|
return p.tok.kind in [.plus, .minus] && p.peek_tok.kind in [.number, .name]
|
|
|
|
}
|
2020-02-04 08:29:50 +01:00
|
|
|
*/
|
2020-02-10 20:33:34 +01:00
|
|
|
// `.green`
|
|
|
|
fn (p mut Parser) enum_val() (ast.Expr,table.Type) {
|
|
|
|
p.check(.dot)
|
|
|
|
name := p.check_name()
|
|
|
|
mut node := ast.Expr{}
|
|
|
|
node = ast.EnumVal{
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
return node,table.bool_type
|
|
|
|
}
|
2020-01-03 11:36:17 +01:00
|
|
|
|
2020-01-07 00:14:19 +01:00
|
|
|
fn (p mut Parser) for_statement() ast.Stmt {
|
2019-12-30 06:16:59 +01:00
|
|
|
p.check(.key_for)
|
2020-02-04 17:44:39 +01:00
|
|
|
p.table.open_scope()
|
|
|
|
// defer { p.table.close_scope() }
|
2020-01-07 00:14:19 +01:00
|
|
|
// Infinite loop
|
|
|
|
if p.tok.kind == .lcbr {
|
|
|
|
stmts := p.parse_block()
|
2020-02-04 17:44:39 +01:00
|
|
|
p.table.close_scope()
|
2020-01-07 00:14:19 +01:00
|
|
|
return ast.ForStmt{
|
|
|
|
stmts: stmts
|
2020-02-03 07:02:54 +01:00
|
|
|
pos: p.tok.position()
|
2020-01-07 00:14:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if p.tok.kind == .key_mut {
|
|
|
|
p.error('`mut` is not required in for loops')
|
|
|
|
}
|
|
|
|
// for i := 0; i < 10; i++ {
|
2020-02-07 07:34:18 +01:00
|
|
|
else if p.peek_tok.kind in [.decl_assign, .assign, .semicolon] || p.tok.kind == .semicolon {
|
2020-01-07 00:14:19 +01:00
|
|
|
mut init := ast.Stmt{}
|
|
|
|
mut cond := ast.Expr{}
|
|
|
|
mut inc := ast.Stmt{}
|
|
|
|
if p.peek_tok.kind == .decl_assign {
|
|
|
|
init = p.var_decl()
|
|
|
|
}
|
|
|
|
else if p.tok.kind != .semicolon {
|
|
|
|
// allow `for ;; i++ {`
|
|
|
|
// Allow `for i = 0; i < ...`
|
|
|
|
/*
|
|
|
|
cond, typ = p.expr(0)
|
|
|
|
if typ.kind != _bool {
|
|
|
|
p.error('non-bool used as for condition')
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
println(1)
|
|
|
|
}
|
|
|
|
p.check(.semicolon)
|
|
|
|
if p.tok.kind != .semicolon {
|
2020-02-10 08:32:08 +01:00
|
|
|
mut typ := table.void_type
|
2020-01-07 00:14:19 +01:00
|
|
|
cond,typ = p.expr(0)
|
|
|
|
}
|
|
|
|
p.check(.semicolon)
|
|
|
|
if p.tok.kind != .lcbr {
|
|
|
|
inc = p.stmt()
|
|
|
|
}
|
|
|
|
stmts := p.parse_block()
|
2020-02-04 17:44:39 +01:00
|
|
|
p.table.close_scope()
|
2020-01-07 00:14:19 +01:00
|
|
|
return ast.ForCStmt{
|
|
|
|
stmts: stmts
|
|
|
|
init: init
|
|
|
|
cond: cond
|
|
|
|
inc: inc
|
|
|
|
}
|
|
|
|
}
|
2020-02-04 08:29:50 +01:00
|
|
|
// `for i in vals`, `for i in start .. end`
|
2020-02-11 12:59:40 +01:00
|
|
|
else if p.peek_tok.kind in [.key_in, .comma] {
|
|
|
|
var_name := p.check_name()
|
2020-02-04 17:44:39 +01:00
|
|
|
if p.tok.kind == .comma {
|
|
|
|
p.check(.comma)
|
|
|
|
val_name := p.check_name()
|
|
|
|
p.table.register_var(table.Var{
|
|
|
|
name: val_name
|
2020-02-10 08:32:08 +01:00
|
|
|
typ: table.int_type
|
2020-02-04 17:44:39 +01:00
|
|
|
})
|
|
|
|
}
|
2020-01-01 22:34:46 +01:00
|
|
|
p.check(.key_in)
|
2020-02-10 14:43:17 +01:00
|
|
|
mut elem_type := table.void_type
|
2020-02-10 20:33:34 +01:00
|
|
|
// arr_expr
|
|
|
|
_,arr_typ := p.expr(0)
|
2020-02-10 14:43:17 +01:00
|
|
|
// array / map
|
2020-02-11 12:59:40 +01:00
|
|
|
if table.type_idx(arr_typ) == table.string_type_idx {
|
|
|
|
elem_type = table.byte_type
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arr_typ_sym := p.table.get_type_symbol(arr_typ)
|
|
|
|
match arr_typ_sym.info {
|
|
|
|
table.Array {
|
|
|
|
elem_type = it.elem_type
|
|
|
|
}
|
|
|
|
table.Map {
|
|
|
|
elem_type = it.value_type
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
println(1)
|
|
|
|
// elem_type_sym := p.table.get_type_symbol(elem_type)
|
|
|
|
// p.error('cannot loop over type: $elem_type_sym.name')
|
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
}
|
2020-02-11 12:59:40 +01:00
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
// 0 .. 10
|
|
|
|
// start := p.tok.lit.int()
|
2020-02-04 08:29:50 +01:00
|
|
|
if p.tok.kind == .dotdot {
|
|
|
|
p.check(.dotdot)
|
|
|
|
p.expr(0)
|
|
|
|
}
|
|
|
|
p.table.register_var(table.Var{
|
|
|
|
name: var_name
|
2020-02-10 14:43:17 +01:00
|
|
|
typ: elem_type
|
2020-02-04 08:29:50 +01:00
|
|
|
})
|
2020-01-01 22:34:46 +01:00
|
|
|
stmts := p.parse_block()
|
|
|
|
// println('nr stmts=$stmts.len')
|
2020-02-04 17:44:39 +01:00
|
|
|
p.table.close_scope()
|
2020-01-01 22:34:46 +01:00
|
|
|
return ast.ForStmt{
|
|
|
|
stmts: stmts
|
2020-02-03 07:02:54 +01:00
|
|
|
pos: p.tok.position()
|
2020-01-01 22:34:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// `for cond {`
|
2020-02-03 12:06:25 +01:00
|
|
|
cond,_ := p.expr(0)
|
2019-12-30 06:16:59 +01:00
|
|
|
stmts := p.parse_block()
|
2020-02-04 17:44:39 +01:00
|
|
|
p.table.close_scope()
|
2019-12-30 06:16:59 +01:00
|
|
|
return ast.ForStmt{
|
|
|
|
cond: cond
|
|
|
|
stmts: stmts
|
2020-02-03 07:02:54 +01:00
|
|
|
pos: p.tok.position()
|
2019-12-30 06:16:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) if_expr() (ast.Expr,table.Type) {
|
2020-01-07 01:57:38 +01:00
|
|
|
p.inside_if = true
|
|
|
|
// defer {
|
|
|
|
// }
|
2019-12-29 08:51:55 +01:00
|
|
|
mut node := ast.Expr{}
|
|
|
|
p.check(.key_if)
|
2020-02-11 10:26:46 +01:00
|
|
|
// `if x := opt() {`
|
|
|
|
mut cond := ast.Expr{}
|
|
|
|
if p.peek_tok.kind == .decl_assign {
|
|
|
|
p.next()
|
|
|
|
p.check(.decl_assign)
|
|
|
|
p.expr(0)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cond,_ = p.expr(0)
|
|
|
|
}
|
2020-01-22 21:34:38 +01:00
|
|
|
p.inside_if = false
|
2019-12-29 08:51:55 +01:00
|
|
|
stmts := p.parse_block()
|
2019-12-31 19:42:16 +01:00
|
|
|
mut else_stmts := []ast.Stmt
|
|
|
|
if p.tok.kind == .key_else {
|
|
|
|
p.check(.key_else)
|
2020-02-04 17:44:39 +01:00
|
|
|
if p.tok.kind == .key_if {
|
|
|
|
p.if_expr()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
else_stmts = p.parse_block()
|
|
|
|
}
|
2019-12-31 19:42:16 +01:00
|
|
|
}
|
2020-02-10 08:32:08 +01:00
|
|
|
mut typ := table.void_type
|
2020-01-02 20:09:15 +01:00
|
|
|
// mut left := ast.Expr{}
|
2020-01-04 00:06:01 +01:00
|
|
|
// If the last statement is an expression, return its type
|
2020-02-05 10:00:11 +01:00
|
|
|
if stmts.len > 0 {
|
|
|
|
match stmts[stmts.len - 1] {
|
|
|
|
ast.ExprStmt {
|
2020-02-10 08:32:08 +01:00
|
|
|
type_sym := p.table.get_type_symbol(it.typ)
|
|
|
|
p.warn('if expr ret $type_sym.name')
|
2020-02-06 13:57:35 +01:00
|
|
|
typ = it.typ
|
2020-02-05 10:00:11 +01:00
|
|
|
// return node,it.ti
|
|
|
|
// left =
|
|
|
|
}
|
|
|
|
else {}
|
|
|
|
}
|
2020-01-02 20:09:15 +01:00
|
|
|
}
|
2019-12-29 08:51:55 +01:00
|
|
|
node = ast.IfExpr{
|
|
|
|
cond: cond
|
|
|
|
stmts: stmts
|
2019-12-31 19:42:16 +01:00
|
|
|
else_stmts: else_stmts
|
2020-02-06 13:57:35 +01:00
|
|
|
typ: typ
|
2020-02-03 07:02:54 +01:00
|
|
|
pos: p.tok.position()
|
2020-01-02 20:09:15 +01:00
|
|
|
// left: left
|
2020-02-03 07:44:52 +01:00
|
|
|
|
2019-12-29 08:51:55 +01:00
|
|
|
}
|
2020-02-06 13:57:35 +01:00
|
|
|
return node,typ
|
2019-12-29 08:51:55 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) string_expr() (ast.Expr,table.Type) {
|
2019-12-28 09:15:32 +01:00
|
|
|
mut node := ast.Expr{}
|
|
|
|
node = ast.StringLiteral{
|
|
|
|
val: p.tok.lit
|
|
|
|
}
|
2020-01-07 01:08:24 +01:00
|
|
|
if p.peek_tok.kind != .str_dollar {
|
|
|
|
p.next()
|
2020-02-10 08:32:08 +01:00
|
|
|
return node,table.string_type
|
2020-01-07 01:08:24 +01:00
|
|
|
}
|
|
|
|
// Handle $ interpolation
|
|
|
|
for p.tok.kind == .str {
|
|
|
|
p.next()
|
|
|
|
if p.tok.kind != .str_dollar {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
p.check(.str_dollar)
|
|
|
|
p.expr(0)
|
2020-02-10 20:33:34 +01:00
|
|
|
if p.tok.kind == .colon {
|
2020-02-04 09:54:15 +01:00
|
|
|
p.next()
|
|
|
|
}
|
2020-02-11 10:26:46 +01:00
|
|
|
// ${num:2d}
|
|
|
|
if p.tok.kind == .number {
|
|
|
|
p.next()
|
|
|
|
if p.tok.lit.len == 1 {
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
}
|
2020-01-07 01:08:24 +01:00
|
|
|
}
|
2020-02-10 08:32:08 +01:00
|
|
|
return node,table.string_type
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) array_init() (ast.Expr,table.Type) {
|
2020-02-04 08:29:50 +01:00
|
|
|
mut node := ast.Expr{}
|
2019-12-30 09:38:12 +01:00
|
|
|
p.check(.lsbr)
|
2020-02-10 08:32:08 +01:00
|
|
|
mut val_type := table.void_type
|
2019-12-30 09:38:12 +01:00
|
|
|
mut exprs := []ast.Expr
|
2020-02-10 14:43:17 +01:00
|
|
|
mut is_fixed := false
|
|
|
|
mut fixed_size := 0
|
|
|
|
if p.tok.kind == .rsbr {
|
|
|
|
p.check(.rsbr)
|
|
|
|
// []string
|
|
|
|
if p.tok.kind == .name {
|
|
|
|
val_type = p.parse_type()
|
|
|
|
}
|
|
|
|
// []
|
|
|
|
else {
|
|
|
|
// TODO ?
|
2020-02-10 20:33:34 +01:00
|
|
|
println(0)
|
2019-12-30 09:38:12 +01:00
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// [1,2,3]
|
|
|
|
for i := 0; p.tok.kind != .rsbr; i++ {
|
|
|
|
expr,typ := p.expr(0)
|
|
|
|
exprs << expr
|
|
|
|
if i == 0 {
|
|
|
|
val_type = typ
|
|
|
|
}
|
|
|
|
if p.tok.kind == .comma {
|
|
|
|
p.check(.comma)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
line_nr := p.tok.line_nr
|
|
|
|
p.check(.rsbr)
|
|
|
|
// Fixed size array? (`[100]byte`)
|
|
|
|
if exprs.len == 1 && p.tok.kind == .name && p.tok.line_nr == line_nr {
|
|
|
|
is_fixed = true
|
|
|
|
val_type = p.parse_type()
|
|
|
|
match exprs[0] {
|
2020-02-10 20:33:34 +01:00
|
|
|
ast.IntegerLiteral {
|
|
|
|
fixed_size = it.val
|
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
else {}
|
2020-02-10 20:33:34 +01:00
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
p.warn('fixed size array')
|
2019-12-30 09:38:12 +01:00
|
|
|
}
|
|
|
|
}
|
2020-02-10 20:33:34 +01:00
|
|
|
idx := if is_fixed { p.table.find_or_register_array_fixed(val_type, fixed_size, 1) } else { p.table.find_or_register_array(val_type, 1) }
|
2020-02-10 08:32:08 +01:00
|
|
|
array_type := table.new_type(idx)
|
2019-12-30 09:38:12 +01:00
|
|
|
node = ast.ArrayInit{
|
2020-02-06 13:57:35 +01:00
|
|
|
typ: array_type
|
2019-12-30 09:38:12 +01:00
|
|
|
exprs: exprs
|
2020-01-19 13:52:34 +01:00
|
|
|
pos: p.tok.position()
|
2019-12-30 09:38:12 +01:00
|
|
|
}
|
2020-02-06 13:57:35 +01:00
|
|
|
return node,array_type
|
2019-12-30 09:38:12 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) parse_number_literal() (ast.Expr,table.Type) {
|
2019-12-28 09:15:32 +01:00
|
|
|
lit := p.tok.lit
|
|
|
|
mut node := ast.Expr{}
|
2020-02-10 08:32:08 +01:00
|
|
|
mut ti := table.int_type
|
2019-12-28 09:15:32 +01:00
|
|
|
if lit.contains('.') {
|
|
|
|
node = ast.FloatLiteral{
|
2019-12-28 09:43:22 +01:00
|
|
|
// val: lit.f64()
|
2019-12-28 09:15:32 +01:00
|
|
|
val: lit
|
|
|
|
}
|
2020-02-10 08:32:08 +01:00
|
|
|
ti = table.f64_type
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
|
|
|
else {
|
2019-12-28 09:15:32 +01:00
|
|
|
node = ast.IntegerLiteral{
|
|
|
|
val: lit.int()
|
|
|
|
}
|
2020-01-22 21:34:38 +01:00
|
|
|
// ti = table.int_ti
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
p.next()
|
2020-01-04 17:57:25 +01:00
|
|
|
return node,ti
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2019-12-30 12:10:46 +01:00
|
|
|
fn (p mut Parser) module_decl() ast.Module {
|
|
|
|
p.check(.key_module)
|
2020-01-18 23:26:14 +01:00
|
|
|
name := p.check_name()
|
|
|
|
return ast.Module{
|
|
|
|
name: name
|
|
|
|
}
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
2019-12-28 09:15:32 +01:00
|
|
|
|
2020-01-18 23:26:14 +01:00
|
|
|
fn (p mut Parser) parse_import() ast.Import {
|
|
|
|
mod_name := p.check_name()
|
|
|
|
mut mod_alias := mod_name
|
2020-01-06 16:13:12 +01:00
|
|
|
if p.tok.kind == .key_as {
|
|
|
|
p.check(.key_as)
|
2020-01-18 23:26:14 +01:00
|
|
|
mod_alias = p.check_name()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2019-12-31 19:42:16 +01:00
|
|
|
return ast.Import{
|
2020-01-18 23:26:14 +01:00
|
|
|
mod: mod_name
|
|
|
|
alias: mod_alias
|
|
|
|
pos: p.tok.position()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (p mut Parser) import_stmt() []ast.Import {
|
|
|
|
p.check(.key_import)
|
|
|
|
mut imports := []ast.Import
|
|
|
|
if p.tok.kind == .lpar {
|
|
|
|
p.check(.lpar)
|
|
|
|
for p.tok.kind != .rpar {
|
|
|
|
imports << p.parse_import()
|
|
|
|
}
|
|
|
|
p.check(.rpar)
|
2020-01-22 21:34:38 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-01-18 23:26:14 +01:00
|
|
|
imports << p.parse_import()
|
|
|
|
}
|
|
|
|
return imports
|
|
|
|
}
|
|
|
|
|
2020-02-03 07:02:54 +01:00
|
|
|
fn (p mut Parser) const_decl() ast.ConstDecl {
|
2020-02-10 23:19:50 +01:00
|
|
|
is_pub := p.tok.kind == .key_pub
|
|
|
|
if is_pub {
|
|
|
|
p.next()
|
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
p.check(.key_const)
|
|
|
|
p.check(.lpar)
|
2020-02-03 07:02:54 +01:00
|
|
|
mut fields := []ast.Field
|
|
|
|
mut exprs := []ast.Expr
|
2020-01-18 23:26:14 +01:00
|
|
|
for p.tok.kind != .rpar {
|
|
|
|
name := p.check_name()
|
|
|
|
println('const: $name')
|
|
|
|
p.check(.assign)
|
2020-02-03 07:02:54 +01:00
|
|
|
expr,typ := p.expr(0)
|
|
|
|
fields << ast.Field{
|
|
|
|
name: name
|
|
|
|
typ: typ
|
|
|
|
}
|
|
|
|
exprs << expr
|
|
|
|
p.table.register_const(table.Var{
|
|
|
|
name: name
|
|
|
|
typ: typ
|
|
|
|
})
|
2019-12-31 19:42:16 +01:00
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
p.check(.rpar)
|
2020-02-03 07:02:54 +01:00
|
|
|
return ast.ConstDecl{
|
|
|
|
fields: fields
|
|
|
|
exprs: exprs
|
|
|
|
}
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2019-12-30 06:16:59 +01:00
|
|
|
fn (p mut Parser) struct_decl() ast.StructDecl {
|
2019-12-31 19:42:16 +01:00
|
|
|
is_pub := p.tok.kind == .key_pub
|
|
|
|
if is_pub {
|
|
|
|
p.next()
|
|
|
|
}
|
2019-12-30 06:16:59 +01:00
|
|
|
p.check(.key_struct)
|
2020-02-10 23:19:50 +01:00
|
|
|
is_c := p.tok.lit == 'C' && p.peek_tok.kind == .dot
|
|
|
|
if is_c {
|
|
|
|
p.next() // C
|
|
|
|
p.next() // .
|
|
|
|
}
|
2019-12-30 06:16:59 +01:00
|
|
|
name := p.check_name()
|
|
|
|
p.check(.lcbr)
|
2020-01-02 20:09:15 +01:00
|
|
|
mut ast_fields := []ast.Field
|
2020-01-22 21:34:38 +01:00
|
|
|
mut fields := []table.Field
|
2019-12-30 06:16:59 +01:00
|
|
|
for p.tok.kind != .rcbr {
|
2019-12-31 19:42:16 +01:00
|
|
|
if p.tok.kind == .key_pub {
|
|
|
|
p.check(.key_pub)
|
2020-02-04 12:50:58 +01:00
|
|
|
if p.tok.kind == .key_mut {
|
|
|
|
p.check(.key_mut)
|
|
|
|
}
|
|
|
|
p.check(.colon)
|
|
|
|
}
|
|
|
|
else if p.tok.kind == .key_mut {
|
|
|
|
p.check(.key_mut)
|
2019-12-31 19:42:16 +01:00
|
|
|
p.check(.colon)
|
|
|
|
}
|
2019-12-30 06:16:59 +01:00
|
|
|
field_name := p.check_name()
|
2020-02-04 12:50:58 +01:00
|
|
|
// p.warn('field $field_name')
|
2020-02-06 13:57:35 +01:00
|
|
|
typ := p.parse_type()
|
2020-02-05 10:00:11 +01:00
|
|
|
// Default value
|
|
|
|
if p.tok.kind == .assign {
|
|
|
|
p.next()
|
|
|
|
p.expr(0)
|
|
|
|
}
|
2020-01-02 20:09:15 +01:00
|
|
|
ast_fields << ast.Field{
|
2019-12-30 06:16:59 +01:00
|
|
|
name: field_name
|
2020-02-06 13:57:35 +01:00
|
|
|
typ: typ
|
2019-12-30 06:16:59 +01:00
|
|
|
}
|
2020-01-22 21:34:38 +01:00
|
|
|
fields << table.Field{
|
2020-01-02 20:09:15 +01:00
|
|
|
name: field_name
|
2020-02-06 13:57:35 +01:00
|
|
|
typ: typ
|
2020-01-02 20:09:15 +01:00
|
|
|
}
|
2020-02-03 09:11:10 +01:00
|
|
|
// println('struct field $ti.name $field_name')
|
2019-12-30 06:16:59 +01:00
|
|
|
}
|
|
|
|
p.check(.rcbr)
|
2020-02-10 08:32:08 +01:00
|
|
|
t := table.TypeSymbol{
|
2020-02-08 09:50:12 +01:00
|
|
|
parent: 0
|
|
|
|
kind: .struct_
|
|
|
|
name: name
|
|
|
|
info: table.Struct{
|
|
|
|
fields: fields
|
2020-01-18 23:26:14 +01:00
|
|
|
}
|
2020-02-04 17:44:39 +01:00
|
|
|
}
|
2020-02-08 09:50:12 +01:00
|
|
|
mut ret := 0
|
|
|
|
if p.builtin_mod && t.name in table.builtin_type_names {
|
|
|
|
// this allows overiding the builtins type
|
|
|
|
// with the real struct type info parsed from builtin
|
2020-02-10 08:32:08 +01:00
|
|
|
ret = p.table.register_builtin_type_symbol(t)
|
2020-02-10 14:42:57 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-02-10 08:32:08 +01:00
|
|
|
ret = p.table.register_type_symbol(t)
|
2020-02-08 09:50:12 +01:00
|
|
|
}
|
|
|
|
if ret == -1 {
|
|
|
|
p.error('cannot register type `$name`, another type with this name exists')
|
|
|
|
}
|
2019-12-30 06:16:59 +01:00
|
|
|
return ast.StructDecl{
|
|
|
|
name: name
|
2019-12-31 19:42:16 +01:00
|
|
|
is_pub: is_pub
|
2020-01-02 20:09:15 +01:00
|
|
|
fields: ast_fields
|
2020-01-18 23:26:14 +01:00
|
|
|
pos: p.tok.position()
|
2019-12-30 06:16:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-28 14:11:05 +01:00
|
|
|
fn (p mut Parser) return_stmt() ast.Return {
|
2019-12-28 09:15:32 +01:00
|
|
|
p.next()
|
2020-01-07 12:10:07 +01:00
|
|
|
// return expressions
|
|
|
|
mut exprs := []ast.Expr
|
|
|
|
// return type idents
|
2020-01-22 21:34:38 +01:00
|
|
|
// mut got_tis := []table.Type
|
2020-02-10 08:32:08 +01:00
|
|
|
if table.type_idx(p.return_type) == table.void_type_idx {
|
2020-01-22 21:34:38 +01:00
|
|
|
return ast.Return{
|
|
|
|
pos: p.tok.position()
|
|
|
|
}
|
|
|
|
}
|
2020-01-07 12:10:07 +01:00
|
|
|
for {
|
2020-01-18 23:26:14 +01:00
|
|
|
// expr,ti := p.expr(0)
|
2020-01-22 21:34:38 +01:00
|
|
|
expr,_ := p.expr(0)
|
2020-01-07 12:10:07 +01:00
|
|
|
exprs << expr
|
2020-01-18 23:26:14 +01:00
|
|
|
// got_tis << ti
|
2020-01-07 12:10:07 +01:00
|
|
|
if p.tok.kind == .comma {
|
|
|
|
p.check(.comma)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
stmt := ast.Return{
|
2020-02-06 13:57:35 +01:00
|
|
|
expected_type: p.return_type
|
2020-01-07 12:10:07 +01:00
|
|
|
exprs: exprs
|
2020-01-18 23:26:14 +01:00
|
|
|
pos: p.tok.position()
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
return stmt
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2020-02-06 17:38:02 +01:00
|
|
|
pub fn (p mut Parser) assign_stmt() ast.AssignStmt {
|
|
|
|
// TODO: multiple return & multiple assign
|
|
|
|
mut idents := []ast.Ident
|
|
|
|
for {
|
2020-02-07 07:34:18 +01:00
|
|
|
ident,_ := p.parse_ident(false)
|
2020-02-06 17:38:02 +01:00
|
|
|
idents << ident
|
|
|
|
if p.tok.kind == .comma {
|
|
|
|
p.check(.comma)
|
2020-02-07 07:34:18 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-02-06 17:38:02 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p.next() // :=, =
|
2020-02-07 07:34:18 +01:00
|
|
|
expr,_ := p.expr(0)
|
2020-02-06 17:38:02 +01:00
|
|
|
return ast.AssignStmt{
|
|
|
|
left: idents
|
|
|
|
right: [expr]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-28 14:11:05 +01:00
|
|
|
fn (p mut Parser) var_decl() ast.VarDecl {
|
2019-12-28 11:02:06 +01:00
|
|
|
is_mut := p.tok.kind == .key_mut // || p.prev_tok == .key_for
|
2019-12-29 08:51:55 +01:00
|
|
|
// is_static := p.tok.kind == .key_static
|
2019-12-28 11:02:06 +01:00
|
|
|
if p.tok.kind == .key_mut {
|
|
|
|
p.check(.key_mut)
|
|
|
|
// p.fspace()
|
|
|
|
}
|
|
|
|
if p.tok.kind == .key_static {
|
|
|
|
p.check(.key_static)
|
|
|
|
// p.fspace()
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
name := p.check_name()
|
|
|
|
p.next()
|
|
|
|
expr,typ := p.expr(0)
|
2019-12-29 06:50:08 +01:00
|
|
|
if _ := p.table.find_var(name) {
|
2019-12-29 08:51:55 +01:00
|
|
|
p.error('redefinition of `$name`')
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
2019-12-29 06:50:08 +01:00
|
|
|
p.table.register_var(table.Var{
|
|
|
|
name: name
|
|
|
|
is_mut: is_mut
|
2020-01-22 21:34:38 +01:00
|
|
|
typ: typ
|
2019-12-29 06:50:08 +01:00
|
|
|
})
|
2020-02-10 08:32:08 +01:00
|
|
|
typ_sym := p.table.get_type_symbol(typ)
|
|
|
|
p.warn('var decl name=$name typ=$typ_sym.name')
|
2019-12-28 11:02:06 +01:00
|
|
|
// println(p.table.names)
|
2020-01-18 23:26:14 +01:00
|
|
|
node := ast.VarDecl{
|
2019-12-28 09:15:32 +01:00
|
|
|
name: name
|
2019-12-28 09:43:22 +01:00
|
|
|
expr: expr // p.expr(token.lowest_prec)
|
2020-02-03 07:44:52 +01:00
|
|
|
|
2020-01-18 23:26:14 +01:00
|
|
|
is_mut: is_mut
|
2020-01-22 21:34:38 +01:00
|
|
|
typ: typ
|
2020-01-18 23:26:14 +01:00
|
|
|
pos: p.tok.position()
|
2019-12-28 14:11:05 +01:00
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
return node
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
2019-12-26 11:21:41 +01:00
|
|
|
|
2020-02-04 09:54:15 +01:00
|
|
|
fn (p mut Parser) hash() ast.HashStmt {
|
|
|
|
p.next()
|
|
|
|
return ast.HashStmt{
|
|
|
|
name: p.tok.lit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-03 07:02:54 +01:00
|
|
|
fn (p mut Parser) global_decl() ast.GlobalDecl {
|
|
|
|
if !p.pref.translated && !p.pref.is_live && !p.builtin_mod && !p.pref.building_v && p.mod != 'ui' && p.mod != 'gg2' && p.mod != 'uiold' && !os.getwd().contains('/volt') && !p.pref.enable_globals {
|
|
|
|
p.error('use `v --enable-globals ...` to enable globals')
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
name := p.check_name()
|
|
|
|
println(name)
|
|
|
|
typ := p.parse_type()
|
|
|
|
if p.tok.kind == .assign {
|
|
|
|
p.next()
|
|
|
|
p.expr(0)
|
|
|
|
}
|
|
|
|
p.table.register_global(name, typ)
|
|
|
|
// p.genln(p.table.cgen_name_type_pair(name, typ))
|
|
|
|
/*
|
2020-02-10 20:33:34 +01:00
|
|
|
mut g := p.table.cgen_name_type_pair(name, typ)
|
|
|
|
if p.tok == .assign {
|
|
|
|
p.next()
|
|
|
|
g += ' = '
|
|
|
|
_,expr := p.tmp_expr()
|
|
|
|
g += expr
|
|
|
|
}
|
|
|
|
// p.genln('; // global')
|
|
|
|
g += '; // global'
|
|
|
|
if !p.cgen.nogen {
|
|
|
|
p.cgen.consts << g
|
|
|
|
}
|
|
|
|
*/
|
2020-02-03 07:02:54 +01:00
|
|
|
|
|
|
|
return ast.GlobalDecl{
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) match_expr() (ast.Expr,table.Type) {
|
2020-02-05 10:00:11 +01:00
|
|
|
p.check(.key_match)
|
2020-02-07 14:49:14 +01:00
|
|
|
cond,typ := p.expr(0)
|
2020-02-05 10:00:11 +01:00
|
|
|
p.check(.lcbr)
|
2020-02-07 14:49:14 +01:00
|
|
|
mut blocks := []ast.StmtBlock
|
|
|
|
mut match_exprs := []ast.Expr
|
2020-02-10 20:33:34 +01:00
|
|
|
mut return_type := table.void_type
|
2020-02-05 10:00:11 +01:00
|
|
|
for {
|
2020-02-10 23:19:50 +01:00
|
|
|
// Sum type match
|
2020-02-11 00:07:01 +01:00
|
|
|
if p.tok.kind == .name && p.tok.lit[0].is_capital() {
|
|
|
|
p.check_name()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Expression match
|
2020-02-11 10:26:46 +01:00
|
|
|
for {
|
|
|
|
match_expr,_ := p.expr(0)
|
|
|
|
match_exprs << match_expr
|
|
|
|
if p.tok.kind != .comma {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
p.check(.comma)
|
|
|
|
}
|
2020-02-11 00:07:01 +01:00
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
p.warn('match block')
|
2020-02-10 20:33:34 +01:00
|
|
|
stmts := p.parse_block()
|
2020-02-07 14:49:14 +01:00
|
|
|
blocks << ast.StmtBlock{
|
2020-02-10 20:33:34 +01:00
|
|
|
stmts: stmts
|
2020-02-07 14:49:14 +01:00
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
if p.tok.kind == .key_else {
|
|
|
|
p.next()
|
2020-02-07 14:49:14 +01:00
|
|
|
blocks << ast.StmtBlock{
|
|
|
|
stmts: p.parse_block()
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
}
|
2020-02-10 20:33:34 +01:00
|
|
|
// If the last statement is an expression, return its type
|
|
|
|
if stmts.len > 0 {
|
|
|
|
match stmts[stmts.len - 1] {
|
|
|
|
ast.ExprStmt {
|
|
|
|
type_sym := p.table.get_type_symbol(it.typ)
|
|
|
|
p.warn('match expr ret $type_sym.name')
|
|
|
|
return_type = it.typ
|
|
|
|
}
|
|
|
|
else {}
|
|
|
|
}
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
if p.tok.kind == .rcbr {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p.check(.rcbr)
|
|
|
|
mut node := ast.Expr{}
|
2020-02-07 14:49:14 +01:00
|
|
|
node = ast.MatchExpr{
|
|
|
|
blocks: blocks
|
|
|
|
match_exprs: match_exprs
|
|
|
|
typ: typ
|
|
|
|
cond: cond
|
|
|
|
}
|
2020-02-10 20:33:34 +01:00
|
|
|
return node,return_type
|
2020-02-05 10:00:11 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 23:19:50 +01:00
|
|
|
fn (p mut Parser) enum_decl() ast.EnumDecl {
|
|
|
|
is_pub := p.tok.kind == .key_pub
|
|
|
|
if is_pub {
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
p.check(.key_enum)
|
|
|
|
name := p.check_name()
|
|
|
|
p.check(.lcbr)
|
|
|
|
mut vals := []string
|
|
|
|
for p.tok.kind != .eof && p.tok.kind != .rcbr {
|
|
|
|
val := p.check_name()
|
|
|
|
vals << val
|
|
|
|
p.warn('enum val $val')
|
|
|
|
}
|
|
|
|
p.check(.rcbr)
|
|
|
|
return ast.EnumDecl{
|
|
|
|
name: name
|
|
|
|
is_pub: is_pub
|
|
|
|
vals: vals
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (p mut Parser) type_decl() ast.TypeDecl {
|
|
|
|
is_pub := p.tok.kind == .key_pub
|
|
|
|
if is_pub {
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
p.check(.key_type)
|
|
|
|
name := p.check_name()
|
|
|
|
// type SumType = A | B | c
|
|
|
|
if p.tok.kind == .assign {
|
|
|
|
p.next()
|
|
|
|
for {
|
|
|
|
p.check_name()
|
|
|
|
if p.tok.kind != .pipe {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
p.check(.pipe)
|
|
|
|
}
|
|
|
|
}
|
2020-02-11 10:26:46 +01:00
|
|
|
else {
|
|
|
|
p.check_name()
|
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
return ast.TypeDecl{
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 08:32:08 +01:00
|
|
|
fn (p mut Parser) add_unresolved(key string, expr ast.Expr) table.Type {
|
2020-02-07 18:46:42 +01:00
|
|
|
mut idx := p.unresolved_offset + p.unresolved.len
|
|
|
|
if key in p.table.unresolved_idxs {
|
|
|
|
idx = p.table.unresolved_idxs[key]
|
2020-02-06 13:57:35 +01:00
|
|
|
}
|
|
|
|
else {
|
2020-02-08 12:14:53 +01:00
|
|
|
p.table.unresolved_idxs[key] = idx
|
2020-02-06 13:57:35 +01:00
|
|
|
p.unresolved << expr
|
|
|
|
}
|
2020-02-10 14:42:57 +01:00
|
|
|
return table.new_type((-idx) - 1)
|
2020-02-04 12:03:12 +01:00
|
|
|
}
|
|
|
|
|
2019-12-26 11:21:41 +01:00
|
|
|
fn verror(s string) {
|
|
|
|
println(s)
|
|
|
|
exit(1)
|
|
|
|
}
|