summaryrefslogtreecommitdiff
path: root/env.h
blob: f9786d1ae49c26da2849fd64066b7e76effa87e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/************************************************

  env.h -

  $Author: matz $
  $Revision: 1.8 $
  $Date: 1995/01/10 10:42:30 $
  created at: Mon Jul 11 11:53:03 JST 1994

************************************************/
#ifndef ENV_H
#define ENV_H

extern struct ENVIRON {
    int argc;
    VALUE *argv;
    ID last_func;
    struct RClass *last_class;
    struct ENVIRON *prev;
} *the_env;

struct SCOPE {
    struct RBasic super;
    ID *local_tbl;
    VALUE *local_vars;
    int flags;
} *the_scope;

#define SCOPE_MALLOCED (1<<0)

extern int rb_in_eval;

extern struct RClass *the_class;

#define NOEX_PUBLIC  0
#define NOEX_PRIVATE 1

#endif /* ENV_H */