xgo/compiler/ast
Jacob R. McCollum adcf05d26f add variadic function parameters ()
* parsing variable function types

* finished variadic functions

* fix case where number of passed args to variadic function is 0

* remove extraneous OpVarArgs

* allow multiple variables in variadic function declaration

* fix IdentList string method to print multi-arg variadic functions correctly

* round 2 of fix IdentList string method to print multi-arg variadic functions correctly

round 2 of fix IdentList string method to print multi-arg variadic functions correctly

* clean up tasks in OpCall handling, add tests for variadic closures

* cleanup for pr

- add syntax documentation
- cleanup parseIdentList
- cleanup OpCall handling for functions and closures
- cleanup tests
2019-04-25 21:28:27 -07:00
..
array_lit.go Modules () 2019-01-17 01:56:05 -08:00
assign_stmt.go
ast.go
bad_expr.go
bad_stmt.go
binary_expr.go
block_stmt.go
bool_lit.go Modules () 2019-01-17 01:56:05 -08:00
branch_stmt.go
call_expr.go
char_lit.go
cond_expr.go parser implementation for conditional expression 2019-01-27 16:25:12 -08:00
empty_stmt.go
error_expr.go
export_stmt.go Fix several module-related issues 2019-02-02 22:22:40 -08:00
expr.go
expr_stmt.go
file.go Improvements on compiler/VM error reporting (filename:line:col) 2019-02-20 16:26:11 -08:00
float_lit.go
for_in_stmt.go
for_stmt.go Modules () 2019-01-17 01:56:05 -08:00
func_lit.go
func_type.go Modules () 2019-01-17 01:56:05 -08:00
ident.go Modules () 2019-01-17 01:56:05 -08:00
ident_list.go add variadic function parameters () 2019-04-25 21:28:27 -07:00
ident_list_test.go add variadic function parameters () 2019-04-25 21:28:27 -07:00
if_stmt.go
immutable_expr.go adding immutable value (incomplete) 2019-01-24 19:31:17 -08:00
import_expr.go Modules () 2019-01-17 01:56:05 -08:00
inc_dec_stmt.go
index_expr.go
int_lit.go Modules () 2019-01-17 01:56:05 -08:00
map_element_lit.go
map_lit.go Modules () 2019-01-17 01:56:05 -08:00
node.go
paren_expr.go
return_stmt.go remove unused code for tuple value return 2019-01-30 02:01:44 -08:00
selector_expr.go
slice_expr.go
stmt.go
string_lit.go
unary_expr.go
undefined_lit.go