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
|
|
|
|
|
2020-04-14 19:32:23 +02:00
|
|
|
import v.scanner
|
|
|
|
import v.ast
|
|
|
|
import v.token
|
|
|
|
import v.table
|
|
|
|
import v.pref
|
|
|
|
import v.util
|
2020-05-10 11:26:57 +02:00
|
|
|
import v.errors
|
2020-04-14 19:32:23 +02:00
|
|
|
import term
|
|
|
|
import os
|
2020-01-22 21:34:38 +01:00
|
|
|
|
2020-05-04 21:56:41 +02:00
|
|
|
pub struct Parser {
|
2020-04-07 15:48:13 +02:00
|
|
|
scanner &scanner.Scanner
|
2020-04-10 12:01:06 +02:00
|
|
|
file_name string // "/home/user/hello.v"
|
|
|
|
file_name_dir string // "/home/user"
|
2019-12-22 02:34:37 +01:00
|
|
|
mut:
|
2020-04-07 15:48:13 +02:00
|
|
|
tok token.Token
|
2020-04-18 00:22:03 +02:00
|
|
|
prev_tok token.Token
|
2020-04-07 15:48:13 +02:00
|
|
|
peek_tok token.Token
|
2020-04-25 10:07:30 +02:00
|
|
|
peek_tok2 token.Token
|
2020-04-07 15:48:13 +02:00
|
|
|
table &table.Table
|
|
|
|
is_c bool
|
2020-04-16 15:32:11 +02:00
|
|
|
is_js bool
|
2020-04-07 15:48:13 +02:00
|
|
|
inside_if bool
|
2020-05-11 10:13:36 +02:00
|
|
|
inside_if_expr bool
|
|
|
|
inside_or_expr bool
|
2020-04-08 19:08:54 +02:00
|
|
|
inside_for bool
|
|
|
|
inside_fn bool
|
2020-04-07 15:48:13 +02:00
|
|
|
pref &pref.Preferences
|
2020-04-17 17:16:14 +02:00
|
|
|
builtin_mod bool // are we in the `builtin` module?
|
|
|
|
mod string // current module name
|
2020-04-07 15:48:13 +02:00
|
|
|
attr string
|
2020-04-25 15:57:11 +02:00
|
|
|
attr_ctdefine string
|
2020-05-04 16:46:36 +02:00
|
|
|
expr_mod string // for constructing full type names in parse_type()
|
2020-04-07 15:48:13 +02:00
|
|
|
scope &ast.Scope
|
|
|
|
global_scope &ast.Scope
|
|
|
|
imports map[string]string
|
|
|
|
ast_imports []ast.Import
|
2020-05-09 15:23:48 +02:00
|
|
|
is_amp bool // for generating the right code for `&Foo{}`
|
2020-04-07 15:48:13 +02:00
|
|
|
returns bool
|
2020-04-15 16:23:03 +02:00
|
|
|
inside_match bool // to separate `match A { }` from `Struct{}`
|
2020-04-05 03:37:38 +02:00
|
|
|
inside_match_case bool // to separate `match_expr { }` from `Struct{}`
|
2020-05-12 00:26:39 +02:00
|
|
|
inside_match_body bool // to fix eval not used TODO
|
2020-05-11 16:05:59 +02:00
|
|
|
inside_unsafe bool
|
2020-04-25 10:57:12 +02:00
|
|
|
is_stmt_ident bool // true while the beginning of a statement is an ident/selector
|
2020-05-05 14:19:31 +02:00
|
|
|
expecting_type bool // `is Type`, expecting type
|
2020-05-10 11:26:57 +02:00
|
|
|
errors []errors.Error
|
|
|
|
warnings []errors.Warning
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
|
|
|
|
2020-01-22 21:34:38 +01:00
|
|
|
// for tests
|
2020-02-15 13:37:48 +01:00
|
|
|
pub fn parse_stmt(text string, table &table.Table, scope &ast.Scope) ast.Stmt {
|
2020-02-29 17:51:35 +01:00
|
|
|
s := scanner.new_scanner(text, .skip_comments)
|
2020-04-21 05:11:50 +02:00
|
|
|
mut p := Parser{
|
2019-12-22 02:34:37 +01:00
|
|
|
scanner: s
|
2019-12-26 11:27:35 +01:00
|
|
|
table: table
|
2020-02-07 22:10:48 +01:00
|
|
|
pref: &pref.Preferences{}
|
2020-02-15 13:37:48 +01:00
|
|
|
scope: scope
|
2020-04-04 05:14:40 +02:00
|
|
|
global_scope: &ast.Scope{
|
2020-04-08 00:59:28 +02:00
|
|
|
start_pos: 0
|
|
|
|
parent: 0
|
|
|
|
}
|
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-05-01 18:12:18 +02:00
|
|
|
pub fn parse_file(path string, b_table &table.Table, comments_mode scanner.CommentsMode, pref &pref.Preferences, global_scope &ast.Scope) ast.File {
|
2020-02-29 17:51:35 +01:00
|
|
|
// println('parse_file("$path")')
|
2020-02-29 17:53:04 +01:00
|
|
|
// text := os.read_file(path) or {
|
|
|
|
// panic(err)
|
|
|
|
// }
|
2020-04-26 09:17:13 +02:00
|
|
|
mut stmts := []ast.Stmt{}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut p := Parser{
|
2020-02-29 17:51:35 +01:00
|
|
|
scanner: scanner.new_scanner_file(path, comments_mode)
|
2020-05-01 18:12:18 +02:00
|
|
|
table: b_table
|
2020-01-01 10:15:05 +01:00
|
|
|
file_name: path
|
2020-04-10 22:27:51 +02:00
|
|
|
file_name_dir: os.dir(path)
|
2020-04-05 04:05:09 +02:00
|
|
|
pref: pref
|
2020-02-16 11:48:29 +01:00
|
|
|
scope: &ast.Scope{
|
2020-04-08 00:59:28 +02:00
|
|
|
start_pos: 0
|
|
|
|
parent: 0
|
|
|
|
}
|
2020-05-11 16:05:59 +02:00
|
|
|
errors: []errors.Error{}
|
|
|
|
warnings: []errors.Warning{}
|
2020-04-04 05:14:40 +02:00
|
|
|
global_scope: global_scope
|
2019-12-26 11:27:35 +01:00
|
|
|
}
|
2020-04-05 04:05:09 +02:00
|
|
|
// comments_mode: comments_mode
|
2019-12-28 14:11:05 +01:00
|
|
|
p.read_first_token()
|
2020-04-10 22:27:51 +02:00
|
|
|
for p.tok.kind == .comment {
|
2020-04-21 05:11:50 +02:00
|
|
|
mut stmt := ast.Stmt{} // TODO sum type << bug
|
2020-04-10 22:27:51 +02:00
|
|
|
com := p.comment()
|
|
|
|
stmt = com
|
|
|
|
stmts << stmt
|
|
|
|
}
|
2020-05-10 06:47:20 +02:00
|
|
|
// module
|
2020-04-21 05:11:50 +02:00
|
|
|
mut mstmt := ast.Stmt{}
|
2020-04-10 22:27:51 +02:00
|
|
|
module_decl := p.module_decl()
|
|
|
|
mstmt = module_decl
|
|
|
|
stmts << mstmt
|
2020-01-18 23:26:14 +01:00
|
|
|
// imports
|
|
|
|
for p.tok.kind == .key_import {
|
2020-05-10 06:47:20 +02:00
|
|
|
stmts << p.import_stmt()
|
2020-01-18 23:26:14 +01:00
|
|
|
}
|
2020-04-10 22:27:51 +02:00
|
|
|
for {
|
2019-12-28 09:15:32 +01:00
|
|
|
if p.tok.kind == .eof {
|
2020-05-01 18:12:18 +02:00
|
|
|
if p.pref.is_script && !p.pref.is_test && p.mod == 'main' && !have_fn_main(stmts) {
|
2020-05-04 16:46:36 +02:00
|
|
|
stmts << ast.FnDecl{
|
2020-05-01 18:12:18 +02:00
|
|
|
name: 'main'
|
2020-05-03 21:13:40 +02:00
|
|
|
file: p.file_name
|
2020-05-01 18:12:18 +02:00
|
|
|
return_type: table.void_type
|
|
|
|
}
|
|
|
|
}
|
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])
|
2020-02-15 13:37:48 +01:00
|
|
|
p.scope.end_pos = p.tok.pos
|
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-02-29 17:51:35 +01:00
|
|
|
imports: p.ast_imports
|
2020-01-22 21:34:38 +01:00
|
|
|
stmts: stmts
|
2020-02-20 11:13:18 +01:00
|
|
|
scope: p.scope
|
2020-05-11 16:05:59 +02:00
|
|
|
global_scope: p.global_scope
|
|
|
|
errors: p.errors
|
2020-05-10 11:26:57 +02:00
|
|
|
warnings: p.warnings
|
2019-12-28 14:11:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-16 10:53:28 +01:00
|
|
|
/*
|
2020-03-16 08:33:42 +01:00
|
|
|
struct Queue {
|
|
|
|
mut:
|
|
|
|
idx int
|
|
|
|
mu sync.Mutex
|
|
|
|
paths []string
|
|
|
|
table &table.Table
|
|
|
|
parsed_ast_files []ast.File
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (q mut Queue) run() {
|
|
|
|
q.mu.lock()
|
|
|
|
idx := q.idx
|
|
|
|
if idx >= q.paths.len {
|
|
|
|
q.mu.unlock()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
q.idx++
|
|
|
|
q.mu.unlock()
|
|
|
|
path := q.paths[idx]
|
|
|
|
file := parse_file(path, q.table, .skip_comments)
|
|
|
|
q.mu.lock()
|
|
|
|
q.parsed_ast_files << file
|
|
|
|
q.mu.unlock()
|
|
|
|
}
|
2020-03-16 10:53:28 +01:00
|
|
|
*/
|
2020-04-04 05:14:40 +02:00
|
|
|
pub fn parse_files(paths []string, table &table.Table, pref &pref.Preferences, global_scope &ast.Scope) []ast.File {
|
2020-03-16 08:33:42 +01:00
|
|
|
/*
|
|
|
|
println('\n\n\nparse_files()')
|
|
|
|
println(paths)
|
|
|
|
nr_cpus := runtime.nr_cpus()
|
|
|
|
println('nr_cpus= $nr_cpus')
|
|
|
|
mut q := &Queue{
|
|
|
|
paths: paths
|
|
|
|
table: table
|
|
|
|
}
|
|
|
|
for i in 0 .. nr_cpus {
|
|
|
|
go q.run()
|
|
|
|
}
|
|
|
|
time.sleep_ms(100)
|
|
|
|
return q.parsed_ast_files
|
2020-04-25 17:49:16 +02:00
|
|
|
*/
|
2020-03-16 08:33:42 +01:00
|
|
|
// ///////////////
|
2020-04-26 09:17:13 +02:00
|
|
|
mut files := []ast.File{}
|
2019-12-30 12:10:46 +01:00
|
|
|
for path in paths {
|
2020-03-27 08:46:54 +01:00
|
|
|
// println('parse_files $path')
|
2020-04-04 05:14:40 +02:00
|
|
|
files << parse_file(path, table, .skip_comments, pref, global_scope)
|
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
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) read_first_token() {
|
2020-04-25 10:07:30 +02:00
|
|
|
// need to call next() three times to get peek token 1 & 2 and current token
|
|
|
|
p.next()
|
2019-12-28 14:11:05 +01:00
|
|
|
p.next()
|
|
|
|
p.next()
|
2019-12-26 11:27:35 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) open_scope() {
|
2020-02-15 13:37:48 +01:00
|
|
|
p.scope = &ast.Scope{
|
|
|
|
parent: p.scope
|
|
|
|
start_pos: p.tok.pos
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) close_scope() {
|
2020-04-27 15:16:31 +02:00
|
|
|
if !p.pref.is_repl && !p.scanner.is_fmt {
|
|
|
|
for _, obj in p.scope.objects {
|
|
|
|
match obj {
|
|
|
|
ast.Var {
|
|
|
|
if !it.is_used && !it.name.starts_with('__') {
|
|
|
|
if p.pref.is_prod {
|
2020-04-29 12:20:22 +02:00
|
|
|
p.error_with_pos('unused variable: `$it.name`', it.pos)
|
2020-04-27 15:16:31 +02:00
|
|
|
} else {
|
2020-04-29 12:20:22 +02:00
|
|
|
p.warn_with_pos('unused variable: `$it.name`', it.pos)
|
2020-04-27 15:16:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {}
|
2020-04-22 01:52:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-15 13:37:48 +01:00
|
|
|
p.scope.end_pos = p.tok.pos
|
|
|
|
p.scope.parent.children << p.scope
|
|
|
|
p.scope = p.scope.parent
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) parse_block() []ast.Stmt {
|
2020-02-15 13:37:48 +01:00
|
|
|
p.open_scope()
|
2020-03-18 09:56:19 +01:00
|
|
|
// println('parse block')
|
|
|
|
stmts := p.parse_block_no_scope()
|
|
|
|
p.close_scope()
|
|
|
|
// println('nr exprs in block = $exprs.len')
|
|
|
|
return stmts
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) parse_block_no_scope() []ast.Stmt {
|
2019-12-31 19:42:16 +01:00
|
|
|
p.check(.lcbr)
|
2020-04-26 09:17:13 +02:00
|
|
|
mut stmts := []ast.Stmt{}
|
2020-01-06 16:13:12 +01:00
|
|
|
if p.tok.kind != .rcbr {
|
2020-04-10 22:27:51 +02:00
|
|
|
for {
|
2020-01-06 16:13:12 +01:00
|
|
|
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)
|
2019-12-28 14:11:05 +01:00
|
|
|
return stmts
|
2019-12-27 13:57:49 +01:00
|
|
|
}
|
|
|
|
|
2020-04-05 02:08:10 +02:00
|
|
|
/*
|
2020-04-23 01:16:58 +02:00
|
|
|
fn (mut p Parser) next_with_comment() {
|
2020-04-05 02:08:10 +02:00
|
|
|
p.tok = p.peek_tok
|
|
|
|
p.peek_tok = p.scanner.scan()
|
|
|
|
}
|
|
|
|
*/
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) next() {
|
2020-04-18 00:22:03 +02:00
|
|
|
p.prev_tok = p.tok
|
2019-12-28 09:15:32 +01:00
|
|
|
p.tok = p.peek_tok
|
2020-04-25 10:07:30 +02:00
|
|
|
p.peek_tok = p.peek_tok2
|
|
|
|
p.peek_tok2 = p.scanner.scan()
|
2020-04-05 02:08:10 +02:00
|
|
|
/*
|
|
|
|
if p.tok.kind==.comment {
|
|
|
|
p.comments << ast.Comment{text:p.tok.lit, line_nr:p.tok.line_nr}
|
|
|
|
p.next()
|
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
*/
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) check(expected token.Kind) {
|
2020-02-29 17:51:35 +01:00
|
|
|
// for p.tok.kind in [.line_comment, .mline_comment] {
|
|
|
|
// p.next()
|
|
|
|
// }
|
2019-12-28 09:15:32 +01:00
|
|
|
if p.tok.kind != expected {
|
2020-04-16 12:17:15 +02:00
|
|
|
p.error('unexpected `${p.tok.kind.str()}`, expecting `${expected.str()}`')
|
2019-12-27 13:57:49 +01:00
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p 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-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p 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()
|
|
|
|
}
|
2020-04-02 12:53:15 +02:00
|
|
|
.key_struct, .key_union {
|
2019-12-31 19:42:16 +01:00
|
|
|
return p.struct_decl()
|
|
|
|
}
|
2020-04-02 12:53:15 +02:00
|
|
|
.key_interface {
|
|
|
|
return p.interface_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-04-07 15:48:13 +02:00
|
|
|
}
|
2020-01-18 23:26:14 +01:00
|
|
|
}
|
2020-02-03 07:02:54 +01:00
|
|
|
.lsbr {
|
2020-05-08 15:09:42 +02:00
|
|
|
attrs := p.attributes()
|
|
|
|
if attrs.len > 1 {
|
|
|
|
p.error('multiple attributes detected')
|
|
|
|
}
|
|
|
|
return attrs[0]
|
2020-02-03 07:02:54 +01:00
|
|
|
}
|
2020-03-31 19:59:38 +02:00
|
|
|
.key_interface {
|
|
|
|
return p.interface_decl()
|
|
|
|
}
|
2020-02-29 17:51:35 +01:00
|
|
|
.key_import {
|
2020-05-11 16:05:59 +02:00
|
|
|
p.error_with_pos('`import x` can only be declared at the beginning of the file',
|
|
|
|
p.tok.position())
|
2020-05-07 04:32:29 +02:00
|
|
|
return p.import_stmt()
|
2020-02-29 17:51:35 +01:00
|
|
|
}
|
2020-02-03 07:02:54 +01:00
|
|
|
.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-02-12 01:16:38 +01:00
|
|
|
.key_type {
|
|
|
|
return p.type_decl()
|
|
|
|
}
|
|
|
|
.key_enum {
|
|
|
|
return p.enum_decl()
|
|
|
|
}
|
2020-02-26 15:51:05 +01:00
|
|
|
.key_union {
|
|
|
|
return p.struct_decl()
|
|
|
|
}
|
2020-04-05 02:08:10 +02:00
|
|
|
.comment {
|
|
|
|
return p.comment()
|
2020-02-18 20:20:15 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
else {
|
2020-04-09 12:46:16 +02:00
|
|
|
if p.pref.is_script && !p.pref.is_test {
|
2020-05-04 16:46:36 +02:00
|
|
|
p.scanner.add_fn_main_and_rescan(p.tok.pos - 1)
|
2020-04-11 14:06:26 +02:00
|
|
|
p.read_first_token()
|
2020-04-09 12:46:16 +02:00
|
|
|
return p.top_stmt()
|
2020-04-09 15:05:06 +02:00
|
|
|
} else {
|
2020-04-09 12:46:16 +02:00
|
|
|
p.error('bad top level statement ' + p.tok.str())
|
|
|
|
return ast.Stmt{}
|
|
|
|
}
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-05 02:08:10 +02:00
|
|
|
// TODO [if vfmt]
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) check_comment() ast.Comment {
|
2020-04-05 02:08:10 +02:00
|
|
|
if p.tok.kind == .comment {
|
|
|
|
return p.comment()
|
|
|
|
}
|
2020-04-07 15:15:45 +02:00
|
|
|
return ast.Comment{}
|
2020-04-05 02:08:10 +02:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) comment() ast.Comment {
|
2020-04-05 12:25:33 +02:00
|
|
|
pos := p.tok.position()
|
2020-02-29 17:51:35 +01:00
|
|
|
text := p.tok.lit
|
|
|
|
p.next()
|
2020-04-07 15:48:13 +02:00
|
|
|
// p.next_with_comment()
|
2020-04-05 02:08:10 +02:00
|
|
|
return ast.Comment{
|
2020-02-29 17:51:35 +01:00
|
|
|
text: text
|
2020-04-05 12:25:33 +02:00
|
|
|
pos: pos
|
2020-02-29 17:51:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) stmt() ast.Stmt {
|
2020-04-25 10:57:12 +02:00
|
|
|
p.is_stmt_ident = p.tok.kind == .name
|
2020-01-06 16:13:12 +01:00
|
|
|
match p.tok.kind {
|
2020-03-24 15:44:17 +01:00
|
|
|
.lcbr {
|
|
|
|
stmts := p.parse_block()
|
|
|
|
return ast.Block{
|
|
|
|
stmts: stmts
|
|
|
|
}
|
|
|
|
}
|
2020-02-26 15:51:05 +01:00
|
|
|
.key_assert {
|
|
|
|
p.next()
|
2020-04-08 04:47:29 +02:00
|
|
|
assert_pos := p.tok.position()
|
2020-03-05 12:08:43 +01:00
|
|
|
expr := p.expr(0)
|
2020-02-26 15:51:05 +01:00
|
|
|
return ast.AssertStmt{
|
|
|
|
expr: expr
|
2020-04-08 04:47:29 +02:00
|
|
|
pos: assert_pos
|
2020-02-26 15:51:05 +01:00
|
|
|
}
|
|
|
|
}
|
2020-04-30 16:55:33 +02:00
|
|
|
.key_mut, .key_static {
|
2020-03-10 12:01:37 +01:00
|
|
|
return p.assign_stmt()
|
2019-12-28 11:02:06 +01:00
|
|
|
}
|
2019-12-30 06:16:59 +01:00
|
|
|
.key_for {
|
2020-04-08 19:08:54 +02:00
|
|
|
return p.for_stmt()
|
2019-12-30 06:16:59 +01:00
|
|
|
}
|
2020-05-12 17:18:25 +02:00
|
|
|
.name {
|
|
|
|
if p.peek_tok.kind in [.decl_assign, .comma] {
|
|
|
|
// `x := ...`
|
|
|
|
return p.assign_stmt()
|
|
|
|
} else if p.peek_tok.kind == .colon {
|
|
|
|
// `label:`
|
|
|
|
name := p.check_name()
|
|
|
|
p.next()
|
|
|
|
return ast.GotoLabel{
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
} else if p.peek_tok.kind == .name {
|
|
|
|
p.error_with_pos('unexpected name `$p.peek_tok.lit`', p.peek_tok.position())
|
|
|
|
} else if !p.inside_if_expr && !p.inside_match_body &&
|
|
|
|
!p.inside_or_expr && p.peek_tok.kind in [.rcbr, .eof] {
|
|
|
|
p.error_with_pos('`$p.tok.lit` evaluated but not used', p.tok.position())
|
|
|
|
}
|
|
|
|
epos := p.tok.position()
|
|
|
|
return ast.ExprStmt{
|
|
|
|
expr: p.expr(0)
|
|
|
|
pos: epos
|
|
|
|
}
|
|
|
|
}
|
2020-04-05 02:08:10 +02:00
|
|
|
.comment {
|
|
|
|
return p.comment()
|
2020-02-29 17:51:35 +01:00
|
|
|
}
|
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{
|
2020-02-18 03:28:39 +01:00
|
|
|
tok: tok
|
2020-02-04 08:29:50 +01:00
|
|
|
}
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
.key_unsafe {
|
|
|
|
p.next()
|
2020-05-11 16:05:59 +02:00
|
|
|
p.inside_unsafe = true
|
2020-02-26 20:45:03 +01:00
|
|
|
stmts := p.parse_block()
|
2020-05-11 16:05:59 +02:00
|
|
|
p.inside_unsafe = false
|
2020-02-26 20:45:03 +01:00
|
|
|
return ast.UnsafeStmt{
|
|
|
|
stmts: stmts
|
|
|
|
}
|
2020-02-05 10:00:11 +01:00
|
|
|
}
|
2020-03-19 07:59:01 +01:00
|
|
|
.hash {
|
|
|
|
return p.hash()
|
|
|
|
}
|
2020-02-11 10:26:46 +01:00
|
|
|
.key_defer {
|
|
|
|
p.next()
|
|
|
|
stmts := p.parse_block()
|
|
|
|
return ast.DeferStmt{
|
|
|
|
stmts: stmts
|
|
|
|
}
|
|
|
|
}
|
2020-03-16 08:33:42 +01:00
|
|
|
.key_go {
|
|
|
|
p.next()
|
2020-04-03 15:18:17 +02:00
|
|
|
expr := p.expr(0)
|
2020-04-07 15:48:13 +02:00
|
|
|
// mut call_expr := &ast.CallExpr(0) // TODO
|
2020-04-20 08:44:14 +02:00
|
|
|
// { call_expr = it }
|
2020-04-03 15:18:17 +02:00
|
|
|
match expr {
|
2020-04-20 08:44:14 +02:00
|
|
|
ast.CallExpr {}
|
2020-04-16 12:17:15 +02:00
|
|
|
else {}
|
2020-04-03 15:18:17 +02:00
|
|
|
}
|
2020-03-16 08:33:42 +01:00
|
|
|
return ast.GoStmt{
|
2020-04-03 15:18:17 +02:00
|
|
|
call_expr: expr
|
2020-03-16 08:33:42 +01:00
|
|
|
}
|
|
|
|
}
|
2020-02-17 14:15:42 +01:00
|
|
|
.key_goto {
|
|
|
|
p.next()
|
|
|
|
name := p.check_name()
|
|
|
|
return ast.GotoStmt{
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
}
|
2019-12-28 14:11:05 +01:00
|
|
|
else {
|
2020-04-07 16:36:00 +02:00
|
|
|
epos := p.tok.position()
|
2019-12-28 14:11:05 +01:00
|
|
|
return ast.ExprStmt{
|
2020-05-12 17:18:25 +02:00
|
|
|
expr: p.expr(0)
|
2020-04-07 16:36:00 +02:00
|
|
|
pos: epos
|
2019-12-28 14:11:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 15:09:42 +02:00
|
|
|
fn (mut p Parser) attributes() []ast.Attr {
|
|
|
|
mut attrs := []ast.Attr{}
|
2020-02-03 07:02:54 +01:00
|
|
|
p.check(.lsbr)
|
2020-05-08 15:09:42 +02:00
|
|
|
for p.tok.kind != .rsbr {
|
|
|
|
attr := p.parse_attr()
|
|
|
|
attrs << attr
|
|
|
|
if p.tok.kind != .semicolon {
|
|
|
|
expected := `;`
|
|
|
|
if p.tok.kind == .rsbr {
|
|
|
|
p.next()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
p.error('unexpected `${p.tok.kind.str()}`, expecting `${expected.str()}`')
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
return attrs
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut p Parser) parse_attr() ast.Attr {
|
2020-04-25 15:57:11 +02:00
|
|
|
mut is_if_attr := false
|
2020-02-18 17:29:47 +01:00
|
|
|
if p.tok.kind == .key_if {
|
|
|
|
p.next()
|
2020-04-25 15:57:11 +02:00
|
|
|
is_if_attr = true
|
2020-02-18 17:29:47 +01:00
|
|
|
}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut name := p.check_name()
|
2020-04-12 17:45:04 +02:00
|
|
|
if p.tok.kind == .colon {
|
2020-05-05 14:41:24 +02:00
|
|
|
name += ':'
|
2020-04-12 17:45:04 +02:00
|
|
|
p.next()
|
|
|
|
if p.tok.kind == .name {
|
|
|
|
name += p.check_name()
|
|
|
|
} else if p.tok.kind == .string {
|
|
|
|
name += p.tok.lit
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
}
|
2020-03-05 16:13:14 +01:00
|
|
|
p.attr = name
|
2020-04-25 15:57:11 +02:00
|
|
|
if is_if_attr {
|
|
|
|
p.attr_ctdefine = name
|
|
|
|
}
|
2020-02-03 07:02:54 +01:00
|
|
|
return ast.Attr{
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 23:19:50 +01:00
|
|
|
/*
|
2020-04-23 01:16:58 +02:00
|
|
|
fn (mut p Parser) range_expr(low ast.Expr) ast.Expr {
|
2020-02-02 14:31:54 +01:00
|
|
|
// ,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 {
|
2020-03-05 12:08:43 +01:00
|
|
|
high = p.expr(0)
|
2020-02-07 07:34:18 +01:00
|
|
|
// 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-05-10 11:26:57 +02:00
|
|
|
pub fn (mut p Parser) error(s string) {
|
2020-04-10 21:00:54 +02:00
|
|
|
p.error_with_pos(s, p.tok.position())
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:26:57 +02:00
|
|
|
pub fn (mut p Parser) warn(s string) {
|
2020-04-10 21:00:54 +02:00
|
|
|
p.warn_with_pos(s, p.tok.position())
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:26:57 +02:00
|
|
|
pub fn (mut p Parser) error_with_pos(s string, pos token.Position) {
|
2020-04-21 05:11:50 +02:00
|
|
|
mut kind := 'error:'
|
2020-05-10 11:26:57 +02:00
|
|
|
if p.pref.output_mode == .stdout {
|
|
|
|
if p.pref.is_verbose {
|
|
|
|
print_backtrace()
|
|
|
|
kind = 'parser error:'
|
|
|
|
}
|
|
|
|
ferror := util.formatted_error(kind, s, p.file_name, pos)
|
|
|
|
eprintln(ferror)
|
|
|
|
exit(1)
|
|
|
|
} else {
|
|
|
|
p.errors << errors.Error{
|
2020-05-11 16:05:59 +02:00
|
|
|
file_path: p.file_name
|
|
|
|
pos: pos
|
|
|
|
reporter: .parser
|
2020-05-10 11:26:57 +02:00
|
|
|
message: s
|
|
|
|
}
|
2020-01-09 14:08:33 +01:00
|
|
|
}
|
2019-12-30 09:38:12 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 11:26:57 +02:00
|
|
|
pub fn (mut p Parser) warn_with_pos(s string, pos token.Position) {
|
|
|
|
if p.pref.output_mode == .stdout {
|
|
|
|
ferror := util.formatted_error('warning:', s, p.file_name, pos)
|
|
|
|
eprintln(ferror)
|
|
|
|
} else {
|
|
|
|
p.warnings << errors.Warning{
|
2020-05-11 16:05:59 +02:00
|
|
|
file_path: p.file_name
|
|
|
|
pos: pos
|
|
|
|
reporter: .parser
|
2020-05-10 11:26:57 +02:00
|
|
|
message: s
|
|
|
|
}
|
|
|
|
}
|
2019-12-29 08:51:55 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) parse_ident(is_c, is_js bool) ast.Ident {
|
2020-02-06 17:38:02 +01:00
|
|
|
// p.warn('name ')
|
2020-03-06 10:52:03 +01:00
|
|
|
pos := p.tok.position()
|
2020-04-21 05:11:50 +02:00
|
|
|
mut name := p.check_name()
|
2020-02-27 11:12:30 +01:00
|
|
|
if name == '_' {
|
|
|
|
return ast.Ident{
|
2020-02-28 13:29:04 +01:00
|
|
|
name: '_'
|
2020-02-27 11:12:30 +01:00
|
|
|
kind: .blank_ident
|
2020-03-06 10:52:03 +01:00
|
|
|
pos: pos
|
2020-02-27 11:12:30 +01:00
|
|
|
}
|
|
|
|
}
|
2020-02-28 13:29:04 +01:00
|
|
|
if p.expr_mod.len > 0 {
|
|
|
|
name = '${p.expr_mod}.$name'
|
|
|
|
}
|
2020-04-27 22:53:26 +02:00
|
|
|
return ast.Ident{
|
2020-02-28 13:29:04 +01:00
|
|
|
kind: .unresolved
|
2020-02-06 17:38:02 +01:00
|
|
|
name: name
|
2020-02-10 08:32:08 +01:00
|
|
|
is_c: is_c
|
2020-04-15 23:16:49 +02:00
|
|
|
is_js: is_js
|
2020-04-04 05:14:40 +02:00
|
|
|
mod: p.mod
|
2020-03-06 10:52:03 +01:00
|
|
|
pos: pos
|
2020-02-06 17:38:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut p Parser) name_expr() ast.Expr {
|
|
|
|
mut node := ast.Expr{}
|
2020-05-05 14:19:31 +02:00
|
|
|
if p.expecting_type {
|
|
|
|
p.expecting_type = false
|
2020-04-18 00:19:33 +02:00
|
|
|
// get type position before moving to next
|
|
|
|
type_pos := p.tok.position()
|
2020-05-04 16:46:36 +02:00
|
|
|
typ := p.parse_type()
|
2020-04-16 15:32:11 +02:00
|
|
|
return ast.Type{
|
2020-05-04 16:46:36 +02:00
|
|
|
typ: typ
|
2020-04-18 00:19:33 +02:00
|
|
|
pos: type_pos
|
2020-04-16 15:32:11 +02:00
|
|
|
}
|
|
|
|
}
|
2020-02-19 07:16:38 +01:00
|
|
|
is_c := p.tok.lit == 'C'
|
2020-04-15 23:16:49 +02:00
|
|
|
is_js := p.tok.lit == 'JS'
|
2020-04-21 05:11:50 +02:00
|
|
|
mut mod := ''
|
2020-02-27 00:12:37 +01:00
|
|
|
// p.warn('resetting')
|
|
|
|
p.expr_mod = ''
|
|
|
|
// `map[string]int` initialization
|
|
|
|
if p.tok.lit == 'map' && p.peek_tok.kind == .lsbr {
|
|
|
|
map_type := p.parse_map_type()
|
2020-05-04 17:26:28 +02:00
|
|
|
if p.tok.kind == .lcbr && p.peek_tok.kind == .rcbr {
|
|
|
|
p.next()
|
|
|
|
p.next()
|
|
|
|
}
|
2020-03-07 16:23:10 +01:00
|
|
|
return ast.MapInit{
|
2020-03-02 12:34:02 +01:00
|
|
|
typ: map_type
|
|
|
|
}
|
2020-02-27 00:12:37 +01:00
|
|
|
}
|
2020-03-24 17:07:27 +01:00
|
|
|
// Raw string (`s := r'hello \n ')
|
2020-04-18 00:22:03 +02:00
|
|
|
if p.tok.lit in ['r', 'c', 'js'] && p.peek_tok.kind == .string && p.prev_tok.kind != .str_dollar {
|
2020-03-24 17:07:27 +01:00
|
|
|
return p.string_expr()
|
|
|
|
}
|
2020-04-27 15:16:31 +02:00
|
|
|
mut known_var := false
|
|
|
|
if obj := p.scope.find(p.tok.lit) {
|
|
|
|
match mut obj {
|
|
|
|
ast.Var {
|
|
|
|
known_var = true
|
|
|
|
it.is_used = true
|
|
|
|
}
|
|
|
|
else {}
|
|
|
|
}
|
|
|
|
}
|
2020-04-16 15:32:11 +02:00
|
|
|
if p.peek_tok.kind == .dot && !known_var && (is_c || is_js || p.known_import(p.tok.lit) ||
|
|
|
|
p.mod.all_after('.') == p.tok.lit) {
|
2020-02-29 11:47:47 +01:00
|
|
|
if is_c {
|
|
|
|
mod = 'C'
|
2020-04-15 23:16:49 +02:00
|
|
|
} else if is_js {
|
|
|
|
mod = 'JS'
|
2020-04-07 15:48:13 +02:00
|
|
|
} else {
|
2020-02-20 11:13:18 +01:00
|
|
|
// prepend the full import
|
|
|
|
mod = p.imports[p.tok.lit]
|
2020-02-19 07:16:38 +01:00
|
|
|
}
|
2020-01-07 16:06:37 +01:00
|
|
|
p.next()
|
|
|
|
p.check(.dot)
|
2020-02-27 00:12:37 +01:00
|
|
|
p.expr_mod = mod
|
2020-02-05 10:00:11 +01:00
|
|
|
}
|
2020-02-18 17:29:47 +01:00
|
|
|
// p.warn('name expr $p.tok.lit $p.peek_tok.str()')
|
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-04-21 05:11:50 +02:00
|
|
|
mut name := p.tok.lit
|
2020-02-29 11:47:47 +01:00
|
|
|
if mod.len > 0 {
|
|
|
|
name = '${mod}.$name'
|
|
|
|
}
|
2020-03-01 16:14:52 +01:00
|
|
|
name_w_mod := p.prepend_mod(name)
|
2020-02-07 21:29:28 +01:00
|
|
|
// type cast. TODO: finish
|
2020-02-10 20:33:34 +01:00
|
|
|
// if name in table.builtin_type_names {
|
2020-04-25 17:49:16 +02:00
|
|
|
if !known_var && (name in p.table.type_idxs || name_w_mod in p.table.type_idxs) &&
|
2020-04-26 06:39:23 +02:00
|
|
|
name !in ['C.stat', 'C.sigaction'] {
|
2020-02-11 10:26:46 +01:00
|
|
|
// TODO handle C.stat()
|
2020-04-21 05:11:50 +02:00
|
|
|
mut to_typ := p.parse_type()
|
2020-03-10 23:21:26 +01:00
|
|
|
if p.is_amp {
|
|
|
|
// Handle `&Foo(0)`
|
2020-04-25 09:08:53 +02:00
|
|
|
to_typ = to_typ.to_ptr()
|
2020-03-10 23:21:26 +01:00
|
|
|
}
|
2020-02-10 14:43:17 +01:00
|
|
|
p.check(.lpar)
|
2020-04-21 05:11:50 +02:00
|
|
|
mut expr := ast.Expr{}
|
|
|
|
mut arg := ast.Expr{}
|
|
|
|
mut has_arg := false
|
2020-03-05 12:08:43 +01:00
|
|
|
expr = p.expr(0)
|
2020-02-10 20:33:34 +01:00
|
|
|
// TODO, string(b, len)
|
2020-04-25 09:08:53 +02:00
|
|
|
if p.tok.kind == .comma && to_typ.idx() == table.string_type_idx {
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-04-20 08:30:42 +02:00
|
|
|
arg = p.expr(0) // len
|
2020-03-07 16:23:10 +01:00
|
|
|
has_arg = true
|
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-03-07 16:23:10 +01:00
|
|
|
arg: arg
|
|
|
|
has_arg: has_arg
|
2020-05-06 12:05:24 +02:00
|
|
|
pos: expr.position()
|
2020-02-10 14:43:17 +01:00
|
|
|
}
|
2020-02-27 00:12:37 +01:00
|
|
|
p.expr_mod = ''
|
2020-02-18 08:58:20 +01:00
|
|
|
return node
|
2020-04-07 15:48:13 +02:00
|
|
|
} else {
|
2020-04-05 04:05:09 +02:00
|
|
|
// fn call
|
2020-02-18 08:58:20 +01:00
|
|
|
// println('calling $p.tok.lit')
|
2020-04-20 08:30:42 +02:00
|
|
|
x := p.call_expr(is_c, is_js, mod) // TODO `node,typ :=` should work
|
2020-02-07 21:29:28 +01:00
|
|
|
node = x
|
|
|
|
}
|
2020-04-16 11:01:18 +02:00
|
|
|
} else if p.peek_tok.kind == .lcbr && !p.inside_match && !p.inside_match_case && !p.inside_if &&
|
2020-04-15 19:09:51 +02:00
|
|
|
!p.inside_for {
|
2020-04-20 08:30:42 +02:00
|
|
|
return p.struct_init(false) // short_syntax: false
|
2020-04-07 15:48:13 +02:00
|
|
|
} else if p.peek_tok.kind == .dot && (p.tok.lit[0].is_capital() && !known_var) {
|
2020-02-27 00:12:37 +01:00
|
|
|
// `Color.green`
|
2020-04-21 05:11:50 +02:00
|
|
|
mut enum_name := p.check_name()
|
2020-02-27 00:12:37 +01:00
|
|
|
if mod != '' {
|
|
|
|
enum_name = mod + '.' + enum_name
|
2020-04-07 15:48:13 +02:00
|
|
|
} else {
|
2020-02-27 00:12:37 +01:00
|
|
|
enum_name = p.prepend_mod(enum_name)
|
|
|
|
}
|
|
|
|
// p.warn('Color.green $enum_name ' + p.prepend_mod(enum_name) + 'mod=$mod')
|
2020-02-25 15:02:34 +01:00
|
|
|
p.check(.dot)
|
|
|
|
val := p.check_name()
|
|
|
|
// println('enum val $enum_name . $val')
|
2020-02-27 00:12:37 +01:00
|
|
|
p.expr_mod = ''
|
2020-02-25 15:02:34 +01:00
|
|
|
return ast.EnumVal{
|
2020-04-07 15:48:13 +02:00
|
|
|
enum_name: enum_name
|
2020-02-25 15:02:34 +01:00
|
|
|
val: val
|
2020-02-27 00:12:37 +01:00
|
|
|
pos: p.tok.position()
|
2020-03-15 00:46:08 +01:00
|
|
|
mod: mod
|
2020-02-25 15:02:34 +01:00
|
|
|
}
|
2020-05-05 02:12:40 +02:00
|
|
|
} else if p.peek_tok.kind == .colon && p.prev_tok.kind != .str_dollar {
|
|
|
|
// `foo(key:val, key2:val2)`
|
|
|
|
return p.struct_init(true) // short_syntax:true
|
2020-04-07 15:48:13 +02:00
|
|
|
} else {
|
2020-04-27 22:53:26 +02:00
|
|
|
node = p.parse_ident(is_c, is_js)
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-02-27 00:12:37 +01:00
|
|
|
p.expr_mod = ''
|
2020-02-18 08:58:20 +01:00
|
|
|
return node
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) index_expr(left ast.Expr) ast.IndexExpr {
|
2020-02-10 23:19:50 +01:00
|
|
|
// left == `a` in `a[0]`
|
2020-04-20 08:30:42 +02:00
|
|
|
p.next() // [
|
2020-04-21 05:11:50 +02:00
|
|
|
mut has_low := true
|
2020-02-10 23:19:50 +01:00
|
|
|
if p.tok.kind == .dotdot {
|
2020-03-06 22:24:39 +01:00
|
|
|
has_low = false
|
2020-02-10 23:19:50 +01:00
|
|
|
// [..end]
|
|
|
|
p.next()
|
2020-03-05 12:08:43 +01:00
|
|
|
high := p.expr(0)
|
2020-02-10 23:19:50 +01:00
|
|
|
p.check(.rsbr)
|
|
|
|
return ast.IndexExpr{
|
|
|
|
left: left
|
|
|
|
pos: p.tok.position()
|
|
|
|
index: ast.RangeExpr{
|
2020-04-08 00:59:28 +02:00
|
|
|
low: ast.Expr{}
|
|
|
|
high: high
|
|
|
|
has_high: true
|
|
|
|
}
|
2020-02-15 13:37:48 +01:00
|
|
|
}
|
2020-02-02 14:31:54 +01:00
|
|
|
}
|
2020-04-20 08:30:42 +02:00
|
|
|
expr := p.expr(0) // `[expr]` or `[expr..]`
|
2020-04-21 05:11:50 +02:00
|
|
|
mut has_high := false
|
2020-02-10 23:19:50 +01:00
|
|
|
if p.tok.kind == .dotdot {
|
|
|
|
// [start..end] or [start..]
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-04-21 05:11:50 +02:00
|
|
|
mut high := ast.Expr{}
|
2020-02-10 23:19:50 +01:00
|
|
|
if p.tok.kind != .rsbr {
|
2020-03-06 22:24:39 +01:00
|
|
|
has_high = true
|
2020-03-05 12:08:43 +01:00
|
|
|
high = p.expr(0)
|
2020-02-10 23:19:50 +01:00
|
|
|
}
|
|
|
|
p.check(.rsbr)
|
|
|
|
return ast.IndexExpr{
|
|
|
|
left: left
|
|
|
|
pos: p.tok.position()
|
|
|
|
index: ast.RangeExpr{
|
2020-04-08 00:59:28 +02:00
|
|
|
low: expr
|
|
|
|
high: high
|
|
|
|
has_high: has_high
|
|
|
|
has_low: has_low
|
|
|
|
}
|
2020-02-15 13:37:48 +01:00
|
|
|
}
|
2020-02-11 12:59:40 +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-15 13:37:48 +01:00
|
|
|
}
|
2020-01-07 12:14:10 +01:00
|
|
|
}
|
|
|
|
|
2020-05-02 15:26:58 +02:00
|
|
|
fn (mut p Parser) scope_register_it() {
|
2020-05-02 15:46:53 +02:00
|
|
|
p.scope.register('it', ast.Var{
|
2020-02-15 13:37:48 +01:00
|
|
|
name: 'it'
|
2020-04-27 15:16:31 +02:00
|
|
|
pos: p.tok.position()
|
|
|
|
is_used: true
|
2020-02-15 13:37:48 +01:00
|
|
|
})
|
2020-02-10 14:42:57 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) dot_expr(left ast.Expr) ast.Expr {
|
2020-01-06 16:13:12 +01:00
|
|
|
p.next()
|
2020-04-21 05:11:50 +02:00
|
|
|
mut name_pos := p.tok.position()
|
2020-01-06 16:13:12 +01:00
|
|
|
field_name := p.check_name()
|
2020-03-25 10:09:50 +01:00
|
|
|
is_filter := field_name in ['filter', 'map']
|
|
|
|
if is_filter {
|
2020-02-15 13:37:48 +01:00
|
|
|
p.open_scope()
|
2020-04-12 14:19:07 +02:00
|
|
|
name_pos = p.tok.position()
|
2020-05-02 15:26:58 +02:00
|
|
|
p.scope_register_it()
|
2020-03-06 10:52:03 +01:00
|
|
|
// wrong tok position when using defer
|
|
|
|
// defer {
|
2020-03-06 14:14:33 +01:00
|
|
|
// p.close_scope()
|
2020-03-06 10:52:03 +01:00
|
|
|
// }
|
2020-02-10 14:42:57 +01:00
|
|
|
}
|
2020-03-18 09:56:19 +01:00
|
|
|
// Method call
|
2020-01-07 01:08:24 +01:00
|
|
|
if p.tok.kind == .lpar {
|
|
|
|
p.next()
|
2020-03-14 11:11:43 +01:00
|
|
|
args := p.call_args()
|
2020-05-02 15:26:58 +02:00
|
|
|
if is_filter && args.len != 1 {
|
|
|
|
p.error('needs exactly 1 argument')
|
|
|
|
}
|
2020-04-10 14:53:06 +02:00
|
|
|
p.check(.rpar)
|
2020-04-26 09:17:13 +02:00
|
|
|
mut or_stmts := []ast.Stmt{}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut is_or_block_used := false
|
2020-02-04 17:44:39 +01:00
|
|
|
if p.tok.kind == .key_orelse {
|
|
|
|
p.next()
|
2020-03-18 09:56:19 +01:00
|
|
|
p.open_scope()
|
2020-04-04 20:47:57 +02:00
|
|
|
p.scope.register('errcode', ast.Var{
|
|
|
|
name: 'errcode'
|
|
|
|
typ: table.int_type
|
2020-04-27 15:16:31 +02:00
|
|
|
pos: p.tok.position()
|
|
|
|
is_used: true
|
2020-04-04 20:47:57 +02:00
|
|
|
})
|
2020-04-04 05:14:40 +02:00
|
|
|
p.scope.register('err', ast.Var{
|
2020-03-18 09:56:19 +01:00
|
|
|
name: 'err'
|
2020-03-18 10:00:33 +01:00
|
|
|
typ: table.string_type
|
2020-04-27 15:16:31 +02:00
|
|
|
pos: p.tok.position()
|
|
|
|
is_used: true
|
2020-03-18 09:56:19 +01:00
|
|
|
})
|
2020-04-07 16:36:00 +02:00
|
|
|
is_or_block_used = true
|
2020-03-18 09:56:19 +01:00
|
|
|
or_stmts = p.parse_block_no_scope()
|
|
|
|
p.close_scope()
|
2020-02-04 17:44:39 +01:00
|
|
|
}
|
2020-04-12 14:19:07 +02:00
|
|
|
end_pos := p.tok.position()
|
|
|
|
pos := token.Position{
|
|
|
|
line_nr: name_pos.line_nr
|
|
|
|
pos: name_pos.pos
|
|
|
|
len: end_pos.pos - name_pos.pos
|
|
|
|
}
|
2020-03-30 12:39:20 +02:00
|
|
|
mcall_expr := ast.CallExpr{
|
|
|
|
left: left
|
2020-01-07 01:08:24 +01:00
|
|
|
name: field_name
|
|
|
|
args: args
|
2020-03-06 10:52:03 +01:00
|
|
|
pos: pos
|
2020-03-30 12:39:20 +02:00
|
|
|
is_method: true
|
2020-02-28 15:36:41 +01:00
|
|
|
or_block: ast.OrExpr{
|
2020-04-07 16:36:00 +02:00
|
|
|
stmts: or_stmts
|
|
|
|
is_used: is_or_block_used
|
|
|
|
}
|
2020-01-07 01:08:24 +01:00
|
|
|
}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut node := ast.Expr{}
|
2020-01-18 23:26:14 +01:00
|
|
|
node = mcall_expr
|
2020-03-25 10:09:50 +01:00
|
|
|
if is_filter {
|
2020-03-06 10:52:03 +01:00
|
|
|
p.close_scope()
|
|
|
|
}
|
2020-02-15 13:37:48 +01:00
|
|
|
return node
|
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
|
2020-05-09 15:16:48 +02:00
|
|
|
field_name: field_name
|
2020-04-12 14:19:07 +02:00
|
|
|
pos: name_pos
|
2019-12-22 02:34:37 +01:00
|
|
|
}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut node := ast.Expr{}
|
2020-01-18 23:26:14 +01:00
|
|
|
node = sel_expr
|
2020-03-25 10:09:50 +01:00
|
|
|
if is_filter {
|
2020-03-06 10:52:03 +01:00
|
|
|
p.close_scope()
|
|
|
|
}
|
2020-02-15 13:37:48 +01:00
|
|
|
return node
|
2019-12-24 18:54:43 +01:00
|
|
|
}
|
|
|
|
|
2020-02-10 20:33:34 +01:00
|
|
|
// `.green`
|
2020-02-20 15:42:56 +01:00
|
|
|
// `pref.BuildMode.default_mode`
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) enum_val() ast.EnumVal {
|
2020-02-10 20:33:34 +01:00
|
|
|
p.check(.dot)
|
2020-02-25 15:02:34 +01:00
|
|
|
val := p.check_name()
|
2020-02-26 15:51:05 +01:00
|
|
|
return ast.EnumVal{
|
2020-02-25 15:02:34 +01:00
|
|
|
val: val
|
2020-02-27 00:12:37 +01:00
|
|
|
pos: p.tok.position()
|
2020-02-10 20:33:34 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-03 11:36:17 +01:00
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) string_expr() ast.Expr {
|
2020-03-24 17:07:27 +01:00
|
|
|
is_raw := p.tok.kind == .name && p.tok.lit == 'r'
|
|
|
|
is_cstr := p.tok.kind == .name && p.tok.lit == 'c'
|
|
|
|
if is_raw || is_cstr {
|
|
|
|
p.next()
|
|
|
|
}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut node := ast.Expr{}
|
2020-03-21 07:01:06 +01:00
|
|
|
val := p.tok.lit
|
2020-04-10 14:40:52 +02:00
|
|
|
pos := p.tok.position()
|
2020-01-07 01:08:24 +01:00
|
|
|
if p.peek_tok.kind != .str_dollar {
|
|
|
|
p.next()
|
2020-04-10 10:59:07 +02:00
|
|
|
node = ast.StringLiteral{
|
|
|
|
val: val
|
|
|
|
is_raw: is_raw
|
|
|
|
is_c: is_cstr
|
|
|
|
pos: pos
|
|
|
|
}
|
2020-03-05 12:08:43 +01:00
|
|
|
return node
|
2020-01-07 01:08:24 +01:00
|
|
|
}
|
2020-04-26 09:17:13 +02:00
|
|
|
mut exprs := []ast.Expr{}
|
|
|
|
mut vals := []string{}
|
|
|
|
mut efmts := []string{}
|
2020-01-07 01:08:24 +01:00
|
|
|
// Handle $ interpolation
|
2020-03-16 03:19:26 +01:00
|
|
|
for p.tok.kind == .string {
|
2020-03-21 07:01:06 +01:00
|
|
|
vals << p.tok.lit
|
2020-01-07 01:08:24 +01:00
|
|
|
p.next()
|
|
|
|
if p.tok.kind != .str_dollar {
|
|
|
|
continue
|
|
|
|
}
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-03-21 07:01:06 +01:00
|
|
|
exprs << p.expr(0)
|
2020-04-26 09:17:13 +02:00
|
|
|
mut efmt := []string{}
|
2020-02-10 20:33:34 +01:00
|
|
|
if p.tok.kind == .colon {
|
2020-03-24 22:18:58 +01:00
|
|
|
efmt << ':'
|
2020-02-04 09:54:15 +01:00
|
|
|
p.next()
|
2020-04-11 17:25:39 +02:00
|
|
|
// ${num:-2d}
|
|
|
|
if p.tok.kind == .minus {
|
|
|
|
efmt << '-'
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
// ${num:2d}
|
|
|
|
if p.tok.kind == .number {
|
|
|
|
efmt << p.tok.lit
|
|
|
|
p.next()
|
|
|
|
}
|
2020-05-03 18:12:59 +02:00
|
|
|
if p.tok.kind == .name && p.tok.lit.len == 1 {
|
2020-03-24 22:18:58 +01:00
|
|
|
efmt << p.tok.lit
|
2020-02-11 10:26:46 +01:00
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
}
|
2020-03-24 22:18:58 +01:00
|
|
|
efmts << efmt.join('')
|
2020-01-07 01:08:24 +01:00
|
|
|
}
|
2020-03-21 07:01:06 +01:00
|
|
|
node = ast.StringInterLiteral{
|
|
|
|
vals: vals
|
|
|
|
exprs: exprs
|
2020-03-24 22:18:58 +01:00
|
|
|
expr_fmts: efmts
|
2020-04-10 10:59:07 +02:00
|
|
|
pos: pos
|
2020-03-21 07:01:06 +01:00
|
|
|
}
|
2020-03-05 12:08:43 +01:00
|
|
|
return node
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) parse_number_literal() ast.Expr {
|
2019-12-28 09:15:32 +01:00
|
|
|
lit := p.tok.lit
|
2020-04-10 00:09:34 +02:00
|
|
|
pos := p.tok.position()
|
2020-04-21 05:11:50 +02:00
|
|
|
mut node := ast.Expr{}
|
2020-04-17 20:31:32 +02:00
|
|
|
if lit.index_any('.eE') >= 0 && lit[..2] !in ['0x', '0X', '0o', '0O', '0b', '0B'] {
|
2019-12-28 09:15:32 +01:00
|
|
|
node = ast.FloatLiteral{
|
|
|
|
val: lit
|
2020-04-20 14:49:26 +02:00
|
|
|
pos: pos
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
2020-04-07 15:48:13 +02:00
|
|
|
} else {
|
2019-12-28 09:15:32 +01:00
|
|
|
node = ast.IntegerLiteral{
|
2020-03-17 02:49:15 +01:00
|
|
|
val: lit
|
2020-04-10 00:09:34 +02:00
|
|
|
pos: pos
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
p.next()
|
2020-03-05 12:08:43 +01:00
|
|
|
return node
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) module_decl() ast.Module {
|
|
|
|
mut name := 'main'
|
2020-04-10 22:32:52 +02:00
|
|
|
is_skipped := p.tok.kind != .key_module
|
|
|
|
if !is_skipped {
|
2020-05-10 02:28:56 +02:00
|
|
|
module_pos := p.tok.position()
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-05-10 02:28:56 +02:00
|
|
|
mut pos := p.tok.position()
|
2020-04-10 22:27:51 +02:00
|
|
|
name = p.check_name()
|
2020-05-10 02:28:56 +02:00
|
|
|
if module_pos.line_nr != pos.line_nr {
|
|
|
|
p.error_with_pos('`module` and `$name` must be at same line', pos)
|
|
|
|
}
|
|
|
|
pos = p.tok.position()
|
|
|
|
if module_pos.line_nr == pos.line_nr {
|
|
|
|
if p.tok.kind != .name {
|
|
|
|
p.error_with_pos('`module x` syntax error', pos)
|
|
|
|
} else {
|
|
|
|
p.error_with_pos('`module x` can only declare one module', pos)
|
|
|
|
}
|
|
|
|
}
|
2020-04-10 22:27:51 +02:00
|
|
|
}
|
|
|
|
full_mod := p.table.qualify_module(name, p.file_name)
|
2020-02-19 03:08:10 +01:00
|
|
|
p.mod = full_mod
|
2020-04-10 22:27:51 +02:00
|
|
|
p.builtin_mod = p.mod == 'builtin'
|
2020-01-18 23:26:14 +01:00
|
|
|
return ast.Module{
|
2020-02-19 03:08:10 +01:00
|
|
|
name: full_mod
|
2020-04-10 22:32:52 +02:00
|
|
|
is_skipped: is_skipped
|
2020-01-18 23:26:14 +01:00
|
|
|
}
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
2019-12-28 09:15:32 +01:00
|
|
|
|
2020-05-07 04:32:29 +02:00
|
|
|
fn (mut p Parser) import_stmt() ast.Import {
|
2020-05-08 15:01:54 +02:00
|
|
|
import_pos := p.tok.position()
|
2020-05-07 04:32:29 +02:00
|
|
|
p.check(.key_import)
|
2020-03-11 18:52:51 +01:00
|
|
|
pos := p.tok.position()
|
2020-05-07 04:32:29 +02:00
|
|
|
if p.tok.kind == .lpar {
|
|
|
|
p.error_with_pos('`import()` has been deprecated, use `import x` instead', pos)
|
|
|
|
}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut mod_name := p.check_name()
|
2020-05-08 15:01:54 +02:00
|
|
|
if import_pos.line_nr != pos.line_nr {
|
|
|
|
p.error_with_pos('`import` and `module` must be at same line', pos)
|
|
|
|
}
|
2020-04-21 05:11:50 +02:00
|
|
|
mut mod_alias := mod_name
|
2020-02-19 03:08:10 +01:00
|
|
|
for p.tok.kind == .dot {
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-05-08 15:01:54 +02:00
|
|
|
pos_t := p.tok.position()
|
|
|
|
if p.tok.kind != .name {
|
|
|
|
p.error_with_pos('module syntax error, please use `x.y.z`', pos)
|
|
|
|
}
|
|
|
|
if import_pos.line_nr != pos_t.line_nr {
|
|
|
|
p.error_with_pos('`import` and `submodule` must be at same line', pos)
|
|
|
|
}
|
2020-02-19 03:08:10 +01:00
|
|
|
submod_name := p.check_name()
|
|
|
|
mod_name += '.' + submod_name
|
|
|
|
mod_alias = submod_name
|
|
|
|
}
|
2020-01-06 16:13:12 +01:00
|
|
|
if p.tok.kind == .key_as {
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-01-18 23:26:14 +01:00
|
|
|
mod_alias = p.check_name()
|
2020-01-06 16:13:12 +01:00
|
|
|
}
|
2020-05-08 15:01:54 +02:00
|
|
|
pos_t := p.tok.position()
|
|
|
|
if import_pos.line_nr == pos_t.line_nr {
|
|
|
|
if p.tok.kind != .name {
|
|
|
|
p.error_with_pos('module syntax error, please use `x.y.z`', pos_t)
|
|
|
|
} else {
|
|
|
|
p.error_with_pos('cannot import multiple modules at a time', pos_t)
|
|
|
|
}
|
|
|
|
}
|
2020-02-19 03:08:10 +01:00
|
|
|
p.imports[mod_alias] = mod_name
|
|
|
|
p.table.imports << mod_name
|
2020-05-07 04:32:29 +02:00
|
|
|
node := ast.Import{
|
2020-01-18 23:26:14 +01:00
|
|
|
mod: mod_name
|
|
|
|
alias: mod_alias
|
2020-03-11 18:52:51 +01:00
|
|
|
pos: pos
|
2020-01-18 23:26:14 +01:00
|
|
|
}
|
2020-05-07 04:32:29 +02:00
|
|
|
p.ast_imports << node
|
|
|
|
return node
|
2020-01-18 23:26:14 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) const_decl() ast.ConstDecl {
|
2020-04-19 00:07:57 +02:00
|
|
|
start_pos := p.tok.position()
|
2020-02-10 23:19:50 +01:00
|
|
|
is_pub := p.tok.kind == .key_pub
|
|
|
|
if is_pub {
|
|
|
|
p.next()
|
|
|
|
}
|
2020-04-19 00:07:57 +02:00
|
|
|
end_pos := p.tok.position()
|
2020-01-18 23:26:14 +01:00
|
|
|
p.check(.key_const)
|
2020-04-16 06:00:05 +02:00
|
|
|
if p.tok.kind != .lpar {
|
|
|
|
p.error('consts must be grouped, e.g.\nconst (\n\ta = 1\n)')
|
|
|
|
}
|
2020-04-20 08:30:42 +02:00
|
|
|
p.next() // (
|
2020-04-26 09:17:13 +02:00
|
|
|
mut fields := []ast.ConstField{}
|
2020-01-18 23:26:14 +01:00
|
|
|
for p.tok.kind != .rpar {
|
2020-05-12 00:09:59 +02:00
|
|
|
mut comment := ast.Comment{}
|
2020-04-05 02:08:10 +02:00
|
|
|
if p.tok.kind == .comment {
|
2020-05-12 00:09:59 +02:00
|
|
|
comment = p.comment()
|
2020-04-05 02:08:10 +02:00
|
|
|
}
|
2020-04-30 12:17:31 +02:00
|
|
|
pos := p.tok.position()
|
2020-02-22 13:04:56 +01:00
|
|
|
name := p.prepend_mod(p.check_name())
|
2020-04-04 05:14:40 +02:00
|
|
|
// name := p.check_name()
|
2020-02-22 17:07:03 +01:00
|
|
|
// println('!!const: $name')
|
2020-01-18 23:26:14 +01:00
|
|
|
p.check(.assign)
|
2020-03-05 12:08:43 +01:00
|
|
|
expr := p.expr(0)
|
2020-04-04 05:14:40 +02:00
|
|
|
field := ast.ConstField{
|
2020-02-03 07:02:54 +01:00
|
|
|
name: name
|
2020-04-04 05:14:40 +02:00
|
|
|
expr: expr
|
2020-04-30 12:17:31 +02:00
|
|
|
pos: pos
|
2020-05-12 00:09:59 +02:00
|
|
|
comment: comment
|
2020-02-03 07:02:54 +01:00
|
|
|
}
|
2020-04-04 05:14:40 +02:00
|
|
|
fields << field
|
|
|
|
p.global_scope.register(field.name, field)
|
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{
|
2020-04-19 00:07:57 +02:00
|
|
|
pos: start_pos.extend(end_pos)
|
2020-02-03 07:02:54 +01:00
|
|
|
fields: fields
|
2020-02-26 22:43:37 +01:00
|
|
|
is_pub: is_pub
|
2020-02-03 07:02:54 +01:00
|
|
|
}
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) return_stmt() ast.Return {
|
2020-04-17 16:16:56 +02:00
|
|
|
first_pos := p.tok.position()
|
2019-12-28 09:15:32 +01:00
|
|
|
p.next()
|
2020-01-07 12:10:07 +01:00
|
|
|
// return expressions
|
2020-04-26 09:17:13 +02:00
|
|
|
mut exprs := []ast.Expr{}
|
2020-03-05 13:57:05 +01:00
|
|
|
if p.tok.kind == .rcbr {
|
2020-01-22 21:34:38 +01:00
|
|
|
return ast.Return{
|
2020-04-17 16:16:56 +02:00
|
|
|
pos: first_pos
|
2020-01-22 21:34:38 +01:00
|
|
|
}
|
|
|
|
}
|
2020-04-10 22:27:51 +02:00
|
|
|
for {
|
2020-03-05 12:08:43 +01:00
|
|
|
expr := p.expr(0)
|
2020-01-07 12:10:07 +01:00
|
|
|
exprs << expr
|
|
|
|
if p.tok.kind == .comma {
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-04-07 15:48:13 +02:00
|
|
|
} else {
|
2020-01-07 12:10:07 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2020-04-19 00:07:57 +02:00
|
|
|
end_pos := exprs.last().position()
|
2020-04-17 16:16:56 +02:00
|
|
|
return ast.Return{
|
2020-01-07 12:10:07 +01:00
|
|
|
exprs: exprs
|
2020-04-19 00:07:57 +02:00
|
|
|
pos: first_pos.extend(end_pos)
|
2019-12-28 09:43:22 +01:00
|
|
|
}
|
2019-12-28 09:15:32 +01:00
|
|
|
}
|
|
|
|
|
2020-02-28 13:29:04 +01:00
|
|
|
// left hand side of `=` or `:=` in `a,b,c := 1,2,3`
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) global_decl() ast.GlobalDecl {
|
2020-05-04 16:46:36 +02:00
|
|
|
if !p.pref.translated && !p.pref.is_livemain && !p.builtin_mod && !p.pref.building_v &&
|
|
|
|
p.mod != 'ui' && p.mod != 'gg2' && p.mod != 'uiold' && !os.getwd().contains('/volt') && !p.pref.enable_globals {
|
2020-02-03 07:02:54 +01:00
|
|
|
p.error('use `v --enable-globals ...` to enable globals')
|
|
|
|
}
|
|
|
|
p.next()
|
|
|
|
name := p.check_name()
|
2020-03-31 19:58:44 +02:00
|
|
|
// println(name)
|
2020-02-03 07:02:54 +01:00
|
|
|
typ := p.parse_type()
|
2020-04-21 05:11:50 +02:00
|
|
|
mut expr := ast.Expr{}
|
2020-04-07 18:51:39 +02:00
|
|
|
has_expr := p.tok.kind == .assign
|
|
|
|
if has_expr {
|
2020-02-03 07:02:54 +01:00
|
|
|
p.next()
|
2020-04-07 18:51:39 +02:00
|
|
|
expr = p.expr(0)
|
2020-02-03 07:02:54 +01:00
|
|
|
}
|
|
|
|
// p.genln(p.table.cgen_name_type_pair(name, typ))
|
|
|
|
/*
|
2020-04-04 05:14:40 +02: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-04-25 17:49:16 +02:00
|
|
|
*/
|
2020-04-04 05:14:40 +02:00
|
|
|
glob := ast.GlobalDecl{
|
2020-02-03 07:02:54 +01:00
|
|
|
name: name
|
2020-03-06 16:31:40 +01:00
|
|
|
typ: typ
|
2020-04-07 18:51:39 +02:00
|
|
|
has_expr: has_expr
|
|
|
|
expr: expr
|
2020-02-03 07:02:54 +01:00
|
|
|
}
|
2020-04-04 05:14:40 +02:00
|
|
|
p.global_scope.register(name, glob)
|
|
|
|
return glob
|
2020-02-03 07:02:54 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) enum_decl() ast.EnumDecl {
|
2020-02-10 23:19:50 +01:00
|
|
|
is_pub := p.tok.kind == .key_pub
|
2020-04-19 00:07:57 +02:00
|
|
|
start_pos := p.tok.position()
|
2020-02-10 23:19:50 +01:00
|
|
|
if is_pub {
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
p.check(.key_enum)
|
2020-04-19 00:07:57 +02:00
|
|
|
end_pos := p.tok.position()
|
2020-04-23 05:16:10 +02:00
|
|
|
enum_name := p.check_name()
|
|
|
|
if enum_name.len > 0 && !enum_name[0].is_capital() {
|
2020-05-12 13:39:32 +02:00
|
|
|
p.error_with_pos('enum name `$enum_name` must begin with capital letter', end_pos)
|
2020-04-23 05:16:10 +02:00
|
|
|
}
|
|
|
|
name := p.prepend_mod(enum_name)
|
2020-02-10 23:19:50 +01:00
|
|
|
p.check(.lcbr)
|
2020-04-26 09:17:13 +02:00
|
|
|
mut vals := []string{}
|
2020-04-26 16:25:54 +02:00
|
|
|
// mut default_exprs := []ast.Expr{}
|
2020-04-26 09:17:13 +02:00
|
|
|
mut fields := []ast.EnumField{}
|
2020-02-10 23:19:50 +01:00
|
|
|
for p.tok.kind != .eof && p.tok.kind != .rcbr {
|
2020-04-09 19:23:49 +02:00
|
|
|
pos := p.tok.position()
|
2020-04-10 00:09:34 +02:00
|
|
|
val := p.check_name()
|
2020-05-09 12:43:10 +02:00
|
|
|
if !val.is_lower() {
|
|
|
|
p.error_with_pos('field name `$val` must be all lowercase', pos)
|
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
vals << val
|
2020-04-21 05:11:50 +02:00
|
|
|
mut expr := ast.Expr{}
|
|
|
|
mut has_expr := false
|
2020-02-19 11:31:33 +01:00
|
|
|
// p.warn('enum val $val')
|
2020-02-12 01:16:38 +01:00
|
|
|
if p.tok.kind == .assign {
|
|
|
|
p.next()
|
2020-04-10 14:44:01 +02:00
|
|
|
expr = p.expr(0)
|
|
|
|
has_expr = true
|
2020-02-12 01:16:38 +01:00
|
|
|
}
|
2020-04-17 18:01:02 +02:00
|
|
|
fields << ast.EnumField{
|
2020-04-17 18:11:04 +02:00
|
|
|
name: val
|
|
|
|
pos: pos
|
|
|
|
expr: expr
|
|
|
|
has_expr: has_expr
|
2020-04-17 18:01:02 +02:00
|
|
|
}
|
2020-02-10 23:19:50 +01:00
|
|
|
}
|
|
|
|
p.check(.rcbr)
|
2020-02-25 13:30:43 +01:00
|
|
|
p.table.register_type_symbol(table.TypeSymbol{
|
|
|
|
kind: .enum_
|
2020-03-14 05:20:12 +01:00
|
|
|
name: name
|
2020-05-11 08:59:55 +02:00
|
|
|
mod: p.mod
|
2020-02-25 13:30:43 +01:00
|
|
|
info: table.Enum{
|
2020-04-08 00:59:28 +02:00
|
|
|
vals: vals
|
|
|
|
}
|
2020-02-25 13:30:43 +01:00
|
|
|
})
|
2020-02-10 23:19:50 +01:00
|
|
|
return ast.EnumDecl{
|
|
|
|
name: name
|
|
|
|
is_pub: is_pub
|
2020-04-09 19:23:49 +02:00
|
|
|
fields: fields
|
2020-04-19 00:07:57 +02:00
|
|
|
pos: start_pos.extend(end_pos)
|
2020-02-10 23:19:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) type_decl() ast.TypeDecl {
|
2020-04-19 00:07:57 +02:00
|
|
|
start_pos := p.tok.position()
|
2020-02-10 23:19:50 +01:00
|
|
|
is_pub := p.tok.kind == .key_pub
|
|
|
|
if is_pub {
|
|
|
|
p.next()
|
|
|
|
}
|
|
|
|
p.check(.key_type)
|
2020-04-19 00:07:57 +02:00
|
|
|
end_pos := p.tok.position()
|
|
|
|
decl_pos := start_pos.extend(end_pos)
|
2020-02-10 23:19:50 +01:00
|
|
|
name := p.check_name()
|
2020-04-26 09:17:13 +02:00
|
|
|
mut sum_variants := []table.Type{}
|
2020-02-10 23:19:50 +01:00
|
|
|
if p.tok.kind == .assign {
|
2020-04-20 08:30:42 +02:00
|
|
|
p.next() // TODO require `=`
|
2020-04-13 15:06:02 +02:00
|
|
|
}
|
|
|
|
if p.tok.kind == .key_fn {
|
|
|
|
// function type: `type mycallback fn(string, int)`
|
|
|
|
fn_name := p.prepend_mod(name)
|
|
|
|
fn_type := p.parse_fn_type(fn_name)
|
|
|
|
return ast.FnTypeDecl{
|
|
|
|
name: fn_name
|
|
|
|
is_pub: is_pub
|
|
|
|
typ: fn_type
|
2020-04-19 00:07:57 +02:00
|
|
|
pos: decl_pos
|
2020-04-13 15:06:02 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-20 08:30:42 +02:00
|
|
|
first_type := p.parse_type() // need to parse the first type before we can check if it's `type A = X | Y`
|
2020-04-13 15:06:02 +02:00
|
|
|
if p.tok.kind == .pipe {
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-04-13 15:06:02 +02:00
|
|
|
sum_variants << first_type
|
2020-03-07 17:37:55 +01:00
|
|
|
// type SumType = A | B | c
|
2020-04-10 22:27:51 +02:00
|
|
|
for {
|
2020-03-02 06:40:18 +01:00
|
|
|
variant_type := p.parse_type()
|
|
|
|
sum_variants << variant_type
|
2020-02-10 23:19:50 +01:00
|
|
|
if p.tok.kind != .pipe {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
p.check(.pipe)
|
|
|
|
}
|
2020-03-02 06:40:18 +01:00
|
|
|
p.table.register_type_symbol(table.TypeSymbol{
|
|
|
|
kind: .sum_type
|
|
|
|
name: p.prepend_mod(name)
|
2020-05-11 08:59:55 +02:00
|
|
|
mod: p.mod
|
2020-03-02 06:40:18 +01:00
|
|
|
info: table.SumType{
|
2020-04-08 00:59:28 +02:00
|
|
|
variants: sum_variants
|
|
|
|
}
|
2020-05-04 21:56:41 +02:00
|
|
|
is_public: is_pub
|
2020-03-02 06:40:18 +01:00
|
|
|
})
|
2020-03-07 17:37:55 +01:00
|
|
|
return ast.SumTypeDecl{
|
|
|
|
name: name
|
|
|
|
is_pub: is_pub
|
|
|
|
sub_types: sum_variants
|
2020-04-19 00:07:57 +02:00
|
|
|
pos: decl_pos
|
2020-03-07 17:37:55 +01:00
|
|
|
}
|
2020-03-02 23:19:04 +01:00
|
|
|
}
|
|
|
|
// type MyType int
|
2020-04-13 15:06:02 +02:00
|
|
|
parent_type := first_type
|
2020-04-25 09:08:53 +02:00
|
|
|
pid := parent_type.idx()
|
2020-03-07 17:37:55 +01:00
|
|
|
p.table.register_type_symbol(table.TypeSymbol{
|
|
|
|
kind: .alias
|
|
|
|
name: p.prepend_mod(name)
|
|
|
|
parent_idx: pid
|
2020-05-11 08:59:55 +02:00
|
|
|
mod: p.mod
|
2020-03-07 17:37:55 +01:00
|
|
|
info: table.Alias{
|
2020-04-08 00:59:28 +02:00
|
|
|
foo: ''
|
|
|
|
}
|
2020-05-04 21:56:41 +02:00
|
|
|
is_public: is_pub
|
2020-03-07 17:37:55 +01:00
|
|
|
})
|
|
|
|
return ast.AliasTypeDecl{
|
2020-02-10 23:19:50 +01:00
|
|
|
name: name
|
2020-03-07 17:37:55 +01:00
|
|
|
is_pub: is_pub
|
|
|
|
parent_type: parent_type
|
2020-04-19 00:07:57 +02:00
|
|
|
pos: decl_pos
|
2020-02-10 23:19:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
fn (mut p Parser) assoc() ast.Assoc {
|
2020-04-01 23:23:20 +02:00
|
|
|
var_name := p.check_name()
|
|
|
|
pos := p.tok.position()
|
2020-04-27 15:16:31 +02:00
|
|
|
mut v := p.scope.find_var(var_name) or {
|
2020-04-01 23:23:20 +02:00
|
|
|
p.error('unknown variable `$var_name`')
|
|
|
|
return ast.Assoc{}
|
|
|
|
}
|
2020-04-27 15:16:31 +02:00
|
|
|
v.is_used = true
|
2020-04-01 23:23:20 +02:00
|
|
|
// println('assoc var $name typ=$var.typ')
|
2020-04-26 09:17:13 +02:00
|
|
|
mut fields := []string{}
|
|
|
|
mut vals := []ast.Expr{}
|
2020-04-01 23:23:20 +02:00
|
|
|
p.check(.pipe)
|
2020-04-10 22:27:51 +02:00
|
|
|
for {
|
2020-04-01 23:23:20 +02:00
|
|
|
fields << p.check_name()
|
|
|
|
p.check(.colon)
|
|
|
|
expr := p.expr(0)
|
|
|
|
vals << expr
|
|
|
|
if p.tok.kind == .comma {
|
2020-05-07 06:51:36 +02:00
|
|
|
p.next()
|
2020-04-01 23:23:20 +02:00
|
|
|
}
|
|
|
|
if p.tok.kind == .rcbr {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ast.Assoc{
|
|
|
|
var_name: var_name
|
|
|
|
fields: fields
|
|
|
|
exprs: vals
|
|
|
|
pos: pos
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-31 20:26:15 +02:00
|
|
|
fn (p &Parser) new_true_expr() ast.Expr {
|
|
|
|
return ast.BoolLiteral{
|
|
|
|
val: true
|
2020-04-20 14:49:26 +02:00
|
|
|
pos: p.tok.position()
|
2020-03-31 20:26:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-26 11:21:41 +01:00
|
|
|
fn verror(s string) {
|
2020-04-03 17:38:41 +02:00
|
|
|
util.verror('parser error', s)
|
2019-12-26 11:21:41 +01:00
|
|
|
}
|