pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
2017-01-06
2017-01-06 12:13:07 by Henrik Grubbström (Grubba) <grubba@grubba.org>
cbe130ea926862358d072a114cad9e4bd27b857b (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
Compiler: Added support for arguments to implicit lambdas.
151:
#define DECLARE #include "compilation.h"
-
struct pike_string *this_program_string, *this_string;
+
struct pike_string *this_program_string, *this_string
, *args_string
;
static struct pike_string *this_function_string; static struct pike_string *UNDEFINED_string;
11148:
MAKE_CONST_STRING(this_program_string,"this_program"); MAKE_CONST_STRING(this_string,"this"); MAKE_CONST_STRING(UNDEFINED_string,"UNDEFINED");
+
MAKE_CONST_STRING(args_string, "__ARGS__");
MAKE_CONST_STRING(parser_system_string, "parser"); MAKE_CONST_STRING(type_check_system_string, "type_check");