Branch: Tag:

2000-08-24

2000-08-24 04:04:42 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

jumbopatch, vtables and parent scopes are now working properly!

Rev: src/Makefile.in:1.207
Rev: src/backend.c:1.56
Rev: src/block_alloc.h:1.24
Rev: src/builtin_functions.c:1.300
Rev: src/compilation.h:1.20
Rev: src/docode.c:1.80
Rev: src/interpret.c:1.166
Rev: src/interpret.h:1.66
Rev: src/interpret_functions.h:1.31
Rev: src/las.c:1.192
Rev: src/main.c:1.100
Rev: src/object.c:1.145
Rev: src/program.c:1.265
Rev: src/program.h:1.105
Rev: src/testsuite.in:1.323
Rev: src/threads.c:1.139

5:   \*/      /* -  * $Id: interpret.h,v 1.65 2000/08/23 18:46:36 grubba Exp $ +  * $Id: interpret.h,v 1.66 2000/08/24 04:04:41 hubbe Exp $    */   #ifndef INTERPRET_H   #define INTERPRET_H
63:    char *current_storage;   };    + struct external_variable_context + { +  struct object *o; +  struct inherit *inherit; +  int parent_identifier; + }; +    #ifdef PIKE_DEBUG   #define debug_check_stack() do{if(Pike_sp<Pike_interpreter.evaluator_stack)fatal("Stack error.\n");}while(0)   #define check__positive(X,Y) if((X)<0) fatal Y
226:   void dump_backlog(void);   BLOCK_ALLOC(pike_frame,128)    + PMOD_EXPORT void find_external_context(struct external_variable_context *loc, +  int arg2);   PMOD_EXPORT void mega_apply(enum apply_type type, INT32 args, void *arg1, void *arg2);   PMOD_EXPORT void f_call_function(INT32 args);   PMOD_EXPORT int apply_low_safe_and_stupid(struct object *o, INT32 offset);