v/vlib/v/parser/fn.v

491 lines
11 KiB
V
Raw Normal View History

2020-01-23 21:04:46 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2020-01-02 08:30:15 +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.ast
import v.table
import v.token
import v.util
2020-01-02 08:30:15 +01:00
pub fn (mut p Parser) call_expr(language table.Language, mod string) ast.CallExpr {
2020-04-10 14:53:06 +02:00
first_pos := p.tok.position()
fn_name := if language == .c {
'C.${p.check_name()}'
} else if language == .js {
'JS.${p.check_js_name()}'
} else if mod.len > 0 {
'${mod}.${p.check_name()}'
} else {
p.check_name()
}
2020-05-23 08:51:15 +02:00
mut or_kind := ast.OrKind.absent
2020-05-04 16:46:36 +02:00
if fn_name == 'json.decode' {
p.expecting_type = true // Makes name_expr() parse the type `User` in `json.decode(User, txt)`
2020-05-04 16:46:36 +02:00
p.expr_mod = ''
2020-05-23 08:51:15 +02:00
or_kind = .block
2020-05-04 16:46:36 +02:00
}
2020-05-21 03:58:50 +02:00
mut generic_type := table.void_type
if p.tok.kind == .lt {
// `foo<int>(10)`
p.next() // `<`
2020-05-27 15:56:21 +02:00
p.expr_mod = ''
mut generic_type = p.parse_type()
p.check(.gt) // `>`
2020-05-29 04:36:08 +02:00
// In case of `foo<T>()`
// T is unwrapped and registered in the checker.
if generic_type != table.t_type {
p.table.register_fn_gen_type(fn_name, generic_type)
}
}
2020-01-02 08:30:15 +01:00
p.check(.lpar)
args := p.call_args()
2020-04-10 14:53:06 +02:00
last_pos := p.tok.position()
p.check(.rpar)
pos := token.Position{
line_nr: first_pos.line_nr
pos: first_pos.pos
len: last_pos.pos - first_pos.pos + last_pos.len
}
mut or_stmts := []ast.Stmt{}
2020-02-29 15:03:32 +01:00
if p.tok.kind == .key_orelse {
2020-05-23 08:51:15 +02:00
// `foo() or {}``
2020-05-21 22:35:43 +02:00
was_inside_or_expr := p.inside_or_expr
p.inside_or_expr = true
2020-02-29 15:03:32 +01:00
p.next()
p.open_scope()
p.scope.register('err', ast.Var{
name: 'err'
typ: table.string_type
pos: p.tok.position()
is_used: true
})
p.scope.register('errcode', ast.Var{
name: 'errcode'
typ: table.int_type
pos: p.tok.position()
is_used: true
})
2020-05-23 08:51:15 +02:00
or_kind = .block
or_stmts = p.parse_block_no_scope()
p.close_scope()
2020-05-21 22:35:43 +02:00
p.inside_or_expr = was_inside_or_expr
2020-02-29 15:03:32 +01:00
}
2020-05-12 00:09:59 +02:00
if p.tok.kind == .question {
// `foo()?`
p.next()
2020-05-23 08:51:15 +02:00
or_kind = .propagate
2020-05-12 00:09:59 +02:00
}
2020-01-02 08:30:15 +01:00
node := ast.CallExpr{
name: fn_name
args: args
mod: p.mod
2020-04-10 14:53:06 +02:00
pos: pos
language: language
2020-02-29 15:03:32 +01:00
or_block: ast.OrExpr{
stmts: or_stmts
2020-05-23 08:51:15 +02:00
kind: or_kind
pos: pos
}
2020-05-21 03:58:50 +02:00
generic_type: generic_type
2020-02-04 17:44:39 +01:00
}
return node
2020-01-02 08:30:15 +01:00
}
pub fn (mut p Parser) call_args() []ast.CallArg {
mut args := []ast.CallArg{}
for p.tok.kind != .rpar {
mut is_mut := false
2020-02-04 12:50:58 +01:00
if p.tok.kind == .key_mut {
p.next()
is_mut = true
2020-02-04 12:50:58 +01:00
}
2020-03-05 12:13:45 +01:00
e := p.expr(0)
args << ast.CallArg{
is_mut: is_mut
expr: e
}
if p.tok.kind != .rpar {
p.check(.comma)
}
}
return args
}
fn (mut p Parser) fn_decl() ast.FnDecl {
2020-04-19 00:07:57 +02:00
start_pos := p.tok.position()
2020-03-05 16:13:14 +01:00
is_deprecated := p.attr == 'deprecated'
is_pub := p.tok.kind == .key_pub
if is_pub {
p.next()
}
2020-01-02 08:30:15 +01:00
p.check(.key_fn)
2020-04-22 13:11:58 +02:00
p.open_scope()
2020-04-15 23:16:49 +02:00
// C. || JS.
language := if p.tok.kind == .name && p.tok.lit == 'C' {
table.Language.c
} else if p.tok.kind == .name && p.tok.lit == 'JS' {
table.Language.js
} else {
table.Language.v
}
if language != .v {
2020-02-04 09:54:15 +01:00
p.next()
p.check(.dot)
}
// Receiver?
mut rec_name := ''
mut is_method := false
mut receiver_pos := token.Position{}
mut rec_type := table.void_type
mut rec_mut := false
mut args := []table.Arg{}
if p.tok.kind == .lpar {
2020-04-21 05:07:49 +02:00
p.next() // (
2020-01-07 13:10:05 +01:00
is_method = true
2020-04-30 16:55:33 +02:00
rec_mut = p.tok.kind == .key_mut
2020-04-15 01:45:27 +02:00
if rec_mut {
p.next() // `mut`
2020-04-15 01:45:27 +02:00
}
rec_start_pos := p.tok.position()
rec_name = p.check_name()
2020-04-15 01:45:27 +02:00
if !rec_mut {
rec_mut = p.tok.kind == .key_mut
2020-05-17 13:51:18 +02:00
if rec_mut {
p.warn_with_pos('use `(mut f Foo)` instead of `(f mut Foo)`', p.tok.position())
}
2020-04-15 01:45:27 +02:00
}
receiver_pos = rec_start_pos.extend(p.tok.position())
is_amp := p.tok.kind == .amp
// if rec_mut {
2020-03-11 21:11:27 +01:00
// p.check(.key_mut)
// }
// TODO: talk to alex, should mut be parsed with the type like this?
// or should it be a property of the arg, like this ptr/mut becomes indistinguishable
2020-04-16 15:40:21 +02:00
rec_type = p.parse_type_with_mut(rec_mut)
if is_amp && rec_mut {
p.error('use `(mut f Foo)` or `(f &Foo)` instead of `(mut f &Foo)`')
}
args << table.Arg{
2020-03-10 23:21:26 +01:00
name: rec_name
is_mut: rec_mut
2020-03-10 23:21:26 +01:00
typ: rec_type
}
p.check(.rpar)
}
mut name := ''
if p.tok.kind == .name {
2020-03-11 21:11:27 +01:00
// TODO high order fn
name = if language == .js {
p.check_js_name()
} else {
p.check_name()
}
if language == .v && !p.pref.translated && util.contains_capital(name) {
p.error('function names cannot contain uppercase letters, use snake_case instead')
}
if is_method && p.table.get_type_symbol(rec_type).has_method(name) {
2020-04-07 01:09:25 +02:00
p.error('duplicate method `$name`')
}
}
if p.tok.kind in [.plus, .minus, .mul, .div, .mod] {
2020-04-21 05:07:49 +02:00
name = p.tok.kind.str() // op_to_fn_name()
p.next()
}
2020-02-03 07:44:52 +01:00
// <T>
is_generic := p.tok.kind == .lt
if is_generic {
2020-02-03 07:44:52 +01:00
p.next()
p.next()
p.check(.gt)
}
2020-01-02 08:30:15 +01:00
// Args
args2, is_variadic := p.fn_args()
args << args2
for arg in args {
if p.scope.known_var(arg.name) {
p.error_with_pos('redefinition of parameter `$arg.name`', arg.pos)
}
p.scope.register(arg.name, ast.Var{
name: arg.name
typ: arg.typ
is_mut: arg.is_mut
pos: p.tok.position()
is_used: true
is_arg: true
})
2020-02-11 13:03:10 +01:00
}
mut end_pos := p.prev_tok.position()
2020-01-02 08:30:15 +01:00
// Return type
mut return_type := table.void_type
2020-02-11 13:21:41 +01:00
if p.tok.kind.is_start_of_type() {
2020-04-19 00:07:57 +02:00
end_pos = p.tok.position()
return_type = p.parse_type()
2020-01-02 08:30:15 +01:00
}
ctdefine := p.attr_ctdefine
2020-02-27 17:21:13 +01:00
// Register
2020-01-08 10:19:12 +01:00
if is_method {
mut type_sym := p.table.get_type_symbol(rec_type)
2020-02-27 17:21:13 +01:00
// p.warn('reg method $type_sym.name . $name ()')
type_sym.register_method(table.Fn{
2020-01-08 10:19:12 +01:00
name: name
args: args
return_type: return_type
2020-03-24 12:39:11 +01:00
is_variadic: is_variadic
is_generic: is_generic
is_pub: is_pub
ctdefine: ctdefine
2020-01-08 10:19:12 +01:00
})
} else {
if language == .c {
name = 'C.$name'
} else if language == .js {
2020-04-15 23:16:49 +02:00
name = 'JS.$name'
} else {
name = p.prepend_mod(name)
}
if _ := p.table.find_fn(name) {
p.fn_redefinition_error(name)
}
2020-01-07 13:10:05 +01:00
p.table.register_fn(table.Fn{
name: name
2020-01-07 13:10:05 +01:00
args: args
return_type: return_type
is_variadic: is_variadic
language: language
is_generic: is_generic
is_pub: is_pub
ctdefine: ctdefine
mod: p.mod
2020-01-07 13:10:05 +01:00
})
}
2020-04-08 19:08:54 +02:00
// Body
mut stmts := []ast.Stmt{}
2020-03-06 16:31:40 +01:00
no_body := p.tok.kind != .lcbr
body_start_pos := p.peek_tok.position()
2020-02-04 09:54:15 +01:00
if p.tok.kind == .lcbr {
stmts = p.parse_block_no_scope()
2020-02-04 09:54:15 +01:00
}
p.close_scope()
2020-03-05 16:13:14 +01:00
p.attr = ''
p.attr_ctdefine = ''
2020-01-02 08:30:15 +01:00
return ast.FnDecl{
name: name
stmts: stmts
return_type: return_type
args: args
2020-03-05 16:13:14 +01:00
is_deprecated: is_deprecated
is_pub: is_pub
2020-05-21 03:58:50 +02:00
is_generic: is_generic
is_variadic: is_variadic
receiver: ast.Field{
2020-04-10 18:11:43 +02:00
name: rec_name
typ: rec_type
}
receiver_pos: receiver_pos
2020-02-18 20:20:15 +01:00
is_method: is_method
rec_mut: rec_mut
language: language
2020-03-06 16:31:40 +01:00
no_body: no_body
2020-04-19 00:07:57 +02:00
pos: start_pos.extend(end_pos)
body_pos: body_start_pos
2020-05-04 13:32:25 +02:00
file: p.file_name
is_builtin: p.builtin_mod || p.mod in util.builtin_module_parts
ctdefine: ctdefine
2020-01-02 08:30:15 +01:00
}
}
2020-02-11 13:03:10 +01:00
fn (mut p Parser) anon_fn() ast.AnonFn {
2020-04-17 21:59:19 +02:00
pos := p.tok.position()
p.check(.key_fn)
2020-04-22 13:11:58 +02:00
p.open_scope()
2020-04-17 21:59:19 +02:00
// TODO generics
args, is_variadic := p.fn_args()
for arg in args {
p.scope.register(arg.name, ast.Var{
name: arg.name
typ: arg.typ
pos: p.tok.position()
is_used: true
is_arg: true
2020-04-17 21:59:19 +02:00
})
}
mut return_type := table.void_type
2020-04-17 21:59:19 +02:00
if p.tok.kind.is_start_of_type() {
return_type = p.parse_type()
}
mut stmts := []ast.Stmt{}
2020-04-17 21:59:19 +02:00
no_body := p.tok.kind != .lcbr
if p.tok.kind == .lcbr {
stmts = p.parse_block_no_scope()
2020-04-17 21:59:19 +02:00
}
2020-04-22 13:11:58 +02:00
p.close_scope()
mut func := table.Fn{
2020-04-17 21:59:19 +02:00
args: args
is_variadic: is_variadic
return_type: return_type
}
name := 'anon_${p.tok.pos}_$func.signature()'
func.name = name
idx := p.table.find_or_register_fn_type(p.mod, func, true, false)
2020-04-17 21:59:19 +02:00
typ := table.new_type(idx)
2020-04-25 17:49:16 +02:00
// name := p.table.get_type_name(typ)
2020-04-17 21:59:19 +02:00
return ast.AnonFn{
decl: ast.FnDecl{
name: name
stmts: stmts
return_type: return_type
args: args
is_variadic: is_variadic
is_method: false
is_anon: true
no_body: no_body
pos: pos
file: p.file_name
2020-04-17 21:59:19 +02:00
}
typ: typ
}
}
// fn decl
fn (mut p Parser) fn_args() ([]table.Arg, bool) {
2020-02-11 13:21:41 +01:00
p.check(.lpar)
mut args := []table.Arg{}
mut is_variadic := false
2020-02-11 13:03:10 +01:00
// `int, int, string` (no names, just types)
2020-04-08 19:08:54 +02:00
types_only := p.tok.kind in [.amp, .and] || (p.peek_tok.kind == .comma && p.table.known_type(p.tok.lit)) ||
p.peek_tok.kind == .rpar
// TODO copy pasta, merge 2 branches
2020-02-11 13:03:10 +01:00
if types_only {
// p.warn('types only')
mut arg_no := 1
2020-02-11 13:03:10 +01:00
for p.tok.kind != .rpar {
arg_name := 'arg_$arg_no'
is_mut := p.tok.kind == .key_mut
if is_mut {
p.next()
}
2020-02-11 13:03:10 +01:00
if p.tok.kind == .ellipsis {
p.next()
2020-02-11 13:03:10 +01:00
is_variadic = true
}
pos := p.tok.position()
mut arg_type := p.parse_type()
if is_mut && arg_type != table.t_type {
p.check_fn_mutable_arguments(arg_type, pos)
// if arg_type.is_ptr() {
// p.error('cannot mut')
// }
// arg_type = arg_type.to_ptr()
arg_type = arg_type.set_nr_muls(1)
}
2020-02-29 09:04:47 +01:00
if is_variadic {
2020-04-25 09:08:53 +02:00
arg_type = arg_type.set_flag(.variadic)
2020-02-29 09:04:47 +01:00
}
2020-02-11 13:03:10 +01:00
if p.tok.kind == .comma {
if is_variadic {
2020-06-03 10:36:52 +02:00
p.error_with_pos('cannot use ...(variadic) with non-final parameter no $arg_no',
pos)
2020-02-11 13:03:10 +01:00
}
p.next()
}
args << table.Arg{
pos: pos
2020-02-11 13:03:10 +01:00
name: arg_name
is_mut: is_mut
2020-02-11 13:03:10 +01:00
typ: arg_type
}
arg_no++
2020-02-11 13:03:10 +01:00
}
} else {
2020-02-11 13:03:10 +01:00
for p.tok.kind != .rpar {
2020-05-06 12:13:19 +02:00
mut is_mut := p.tok.kind == .key_mut
if is_mut {
p.next()
}
mut arg_pos := [p.tok.position()]
mut arg_names := [p.check_name()]
2020-02-11 13:03:10 +01:00
// `a, b, c int`
for p.tok.kind == .comma {
p.next()
arg_pos << p.tok.position()
2020-02-11 13:03:10 +01:00
arg_names << p.check_name()
}
2020-05-06 12:13:19 +02:00
if p.tok.kind == .key_mut {
// TODO remove old syntax
is_mut = true
}
2020-02-11 13:03:10 +01:00
if p.tok.kind == .ellipsis {
p.next()
2020-02-11 13:03:10 +01:00
is_variadic = true
}
pos := p.tok.position()
mut typ := p.parse_type()
if is_mut && typ != table.t_type {
p.check_fn_mutable_arguments(typ, pos)
typ = typ.set_nr_muls(1)
}
2020-02-29 09:04:47 +01:00
if is_variadic {
2020-04-25 09:08:53 +02:00
typ = typ.set_flag(.variadic)
2020-02-29 09:04:47 +01:00
}
for i, arg_name in arg_names {
args << table.Arg{
pos: arg_pos[i]
2020-02-11 13:03:10 +01:00
name: arg_name
is_mut: is_mut
2020-02-11 13:03:10 +01:00
typ: typ
}
// if typ.typ.kind == .variadic && p.tok.kind == .comma {
if is_variadic && p.tok.kind == .comma {
2020-06-03 10:36:52 +02:00
p.error_with_pos('cannot use ...(variadic) with non-final parameter $arg_name',
arg_pos[i])
2020-02-11 13:03:10 +01:00
}
}
if p.tok.kind != .rpar {
p.check(.comma)
}
}
}
p.check(.rpar)
return args, is_variadic
2020-02-11 13:03:10 +01:00
}
2020-03-27 08:46:54 +01:00
fn (p &Parser) fileis(s string) bool {
2020-03-27 08:46:54 +01:00
return p.file_name.contains(s)
}
fn (mut p Parser) check_fn_mutable_arguments(typ table.Type, pos token.Position) {
sym := p.table.get_type_symbol(typ)
if sym.kind !in [.array, .struct_, .map, .placeholder] && !typ.is_ptr() {
p.error_with_pos('mutable arguments are only allowed for arrays, maps, and structs\n' +
'return values instead: `fn foo(mut n $sym.name) {` => `fn foo(n $sym.name) $sym.name {`', pos)
}
}
fn (mut p Parser) fn_redefinition_error(name string) {
// Find where this function was already declared
// TODO
/*
for file in p.ast_files {
}
*/
p.table.redefined_fns << name
// p.error('redefinition of function `$name`')
}
fn have_fn_main(stmts []ast.Stmt) bool {
mut has_main_fn := false
for stmt in stmts {
match stmt {
ast.FnDecl {
if it.name == 'main' {
has_main_fn = true
}
}
else {}
}
}
return has_main_fn
}