v/vlib/v/parser/fn.v

199 lines
3.7 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
import (
v.ast
v.table
)
pub fn (p mut Parser) call_expr() (ast.CallExpr,table.Type) {
2020-01-02 08:30:15 +01:00
tok := p.tok
fn_name := p.check_name()
p.check(.lpar)
mut args := []ast.Expr
// mut return_ti := types.void_ti
for p.tok.kind != .rpar {
e,_ := p.expr(0)
args << e
if p.tok.kind != .rpar {
p.check(.comma)
2020-01-02 08:30:15 +01:00
}
}
p.check(.rpar)
node := ast.CallExpr{
name: fn_name
args: args
// tok: tok
pos: tok.position()
2020-01-02 08:30:15 +01:00
}
mut ti := table.unresolved_type
if f := p.table.find_fn(fn_name) {
ti = f.return_type
2020-01-02 08:30:15 +01:00
}
println('adding call_expr check $fn_name')
return node,ti
2020-01-02 08:30:15 +01:00
}
pub fn (p mut Parser) call_args() []ast.Expr {
mut args := []ast.Expr
for p.tok.kind != .rpar {
e,_ := p.expr(0)
args << e
if p.tok.kind != .rpar {
p.check(.comma)
}
}
p.check(.rpar)
return args // ,table.void_ti
}
2020-02-04 09:54:15 +01:00
fn (p mut Parser) fn_decl() ast.FnDecl {
is_pub := p.tok.kind == .key_pub
if is_pub {
p.next()
}
2020-01-02 08:30:15 +01:00
p.table.clear_vars()
p.check(.key_fn)
2020-02-04 09:54:15 +01:00
// C.
is_c := p.tok.kind == .name && p.tok.lit == 'C'
if is_c {
p.next()
p.check(.dot)
}
// Receiver?
mut rec_name := ''
2020-01-07 13:10:05 +01:00
mut is_method := false
mut rec_ti := table.void_type
if p.tok.kind == .lpar {
2020-01-07 13:10:05 +01:00
is_method = true
p.next()
rec_name = p.check_name()
if p.tok.kind == .key_mut {
p.next()
}
rec_ti = p.parse_type()
p.table.register_var(table.Var{
name: rec_name
typ: rec_ti
})
p.check(.rpar)
}
mut name := ''
if p.tok.kind == .name {
2020-02-03 07:44:52 +01:00
// TODO high
name = p.check_name()
}
2020-02-03 07:44:52 +01:00
// <T>
if p.tok.kind == .lt {
p.next()
p.next()
p.check(.gt)
}
2020-01-02 08:30:15 +01:00
// println('fn decl $name')
p.check(.lpar)
// Args
mut args := []table.Var
mut ast_args := []ast.Arg
2020-02-04 09:54:15 +01:00
// `int, int, string` (no names, just types)
types_only := p.tok.kind == .amp || (p.peek_tok.kind == .comma && p.table.known_type(p.tok.lit)) || p.peek_tok.kind == .rpar
if types_only {
p.warn('types only')
for p.tok.kind != .rpar {
p.parse_type()
if p.tok.kind == .comma {
p.next()
}
2020-01-02 08:30:15 +01:00
}
2020-02-04 09:54:15 +01:00
}
else {
for p.tok.kind != .rpar {
mut arg_names := [p.check_name()]
// `a, b, c int`
for p.tok.kind == .comma {
p.check(.comma)
arg_names << p.check_name()
}
2020-02-04 09:54:15 +01:00
ti := p.parse_type()
for arg_name in arg_names {
arg := table.Var{
name: arg_name
typ: ti
}
args << arg
p.table.register_var(arg)
ast_args << ast.Arg{
ti: ti
name: arg_name
}
if ti.kind == .variadic && p.tok.kind == .comma {
p.error('cannot use ...(variadic) with non-final parameter $arg_name')
}
}
2020-02-04 09:54:15 +01:00
if p.tok.kind != .rpar {
p.check(.comma)
}
2020-01-02 08:30:15 +01:00
}
}
p.check(.rpar)
// Return type
mut typ := table.void_type
2020-02-04 09:54:15 +01:00
if p.tok.kind in [.name, .lpar, .amp] {
typ = p.parse_type()
p.return_type = typ
}
else {
p.return_type = table.void_type
2020-01-02 08:30:15 +01:00
}
2020-01-08 10:19:12 +01:00
if is_method {
ok := p.table.register_method(rec_ti, table.Fn{
name: name
args: args
return_type: typ
2020-01-08 10:19:12 +01:00
})
if !ok {
p.error('expected Struct')
}
}
else {
2020-01-07 13:10:05 +01:00
p.table.register_fn(table.Fn{
name: name
args: args
return_type: typ
2020-01-07 13:10:05 +01:00
})
}
2020-02-04 09:54:15 +01:00
mut stmts := []ast.Stmt
if p.tok.kind == .lcbr {
stmts = p.parse_block()
}
2020-01-02 08:30:15 +01:00
return ast.FnDecl{
name: name
stmts: stmts
ti: typ
2020-01-02 08:30:15 +01:00
args: ast_args
is_pub: is_pub
receiver: ast.Field{
name: rec_name
typ: rec_ti
}
2020-01-02 08:30:15 +01:00
}
}
pub fn (p &Parser) check_fn_calls() {
println('check fn calls2')
/*
2020-01-02 08:30:15 +01:00
for call in p.table.unknown_calls {
f := p.table.find_fn(call.name) or {
p.error_at_line('unknown function `$call.name`', call.tok.line_nr)
return
}
2020-01-02 08:37:41 +01:00
println(f.name)
2020-01-06 16:13:12 +01:00
// println(f.return_ti.name)
// println('IN AST typ=' + call.typ.name)
2020-01-02 08:30:15 +01:00
}
*/
2020-01-02 08:30:15 +01:00
}