Displaying 1 result from an estimated 1 matches for "jsop_nop".
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...sh_string (state, target);
- call (state, 2);
- POP (state);
-}
-
-static void
-compile_oneliner_pop (CompileState *state, guint action, guint len)
-{
- JSOp op;
- switch (action) {
- case 0x4f:
- op = JSOP_SETELEM;
- break;
- default:
- g_assert_not_reached ();
- op = JSOP_NOP;
- }
- ONELINER (state, op);
- POP (state);
-}
-
-static void
-compile_get_member (CompileState *state, guint action, guint len)
-{
- add_try_catch_block (state, 1, 4);
- ONELINER (state, JSOP_GETELEM);
- THREELINER_INT (state, JSOP_GOTO, 5);
- POP (state);
- ONELINER (state, JSOP_VOID);
-}...