remove unused properties
This commit is contained in:
parent
35cf4e1fcd
commit
78420ef042
|
@ -93,7 +93,6 @@ typedef struct analyze_state {
|
|||
pic_sym rEQ, rLT, rLE, rGT, rGE;
|
||||
pic_sym sCALL, sTAILCALL;
|
||||
pic_sym sGREF, sLREF, sCREF;
|
||||
pic_sym sGSET, sLSET, sCSET;
|
||||
} analyze_state;
|
||||
|
||||
static void push_scope(analyze_state *, pic_value);
|
||||
|
@ -142,9 +141,6 @@ new_analyze_state(pic_state *pic)
|
|||
register_symbol(pic, state, sGREF, "gref");
|
||||
register_symbol(pic, state, sLREF, "lref");
|
||||
register_symbol(pic, state, sCREF, "cref");
|
||||
register_symbol(pic, state, sGREF, "gref");
|
||||
register_symbol(pic, state, sLREF, "lref");
|
||||
register_symbol(pic, state, sCREF, "cref");
|
||||
|
||||
/* push initial scope */
|
||||
push_scope(state, pic_nil_value());
|
||||
|
|
Loading…
Reference in New Issue