Jacek Caban
|
0b0e34ab39
|
jscript: Addded parameterized property assignment support.
|
2012-04-17 19:19:03 +02:00 |
Jacek Caban
|
f7a8650500
|
jscript: Added decoding support.
|
2012-03-26 18:15:11 +02:00 |
Jacek Caban
|
0762106648
|
jscript: Store source code in bytecode_t.
|
2012-03-26 18:15:08 +02:00 |
Jacek Caban
|
a6ee63eef3
|
jscript: Removed no longer needed ref counting in parser_ctx_t.
|
2012-03-13 10:30:53 +01:00 |
Jacek Caban
|
a1c4c84005
|
jscript: Store parser_ctx_t in bytecode_t instead of other way around.
|
2012-03-13 10:30:49 +01:00 |
Jacek Caban
|
8c347fd71d
|
jscript: Store script context in exec_ctx_t.
|
2012-03-13 10:30:42 +01:00 |
Jacek Caban
|
9d4b0bd502
|
jscript: Don't store compiler_ctx_t in parser_ctx_t.
|
2012-03-13 10:30:36 +01:00 |
Jacek Caban
|
be29a73845
|
jscript: Call script_parse from compile_script, not the other way around.
|
2012-03-13 10:30:32 +01:00 |
Jacek Caban
|
825eb76321
|
jscript: Compile all function from given source in one run.
|
2012-03-13 10:30:27 +01:00 |
Jacek Caban
|
9f83c6061f
|
jscript: Store bytecode_t in exec_ctx_t.
|
2012-03-13 10:30:18 +01:00 |
Jacek Caban
|
f03b24ad3e
|
jscript: Get rid of no longer used OP_label.
|
2012-01-17 14:08:33 +01:00 |
Jacek Caban
|
9752df99af
|
jscript: Get rid of instr_off from expression_t.
|
2012-01-03 12:37:23 +01:00 |
Jacek Caban
|
da07748ca2
|
jscript: Get rid of return_type_t.
|
2011-12-30 15:41:07 +01:00 |
Jacek Caban
|
83e8658894
|
jscript: Get rid of no longer needed interp_tree.
|
2011-12-30 15:41:06 +01:00 |
Jacek Caban
|
e0552ad8c3
|
jscript: Use bytecode for labeled continue and break statements.
|
2011-12-30 15:41:06 +01:00 |
Jacek Caban
|
fc092da98e
|
jscript: Use bytecode for return statement implementation.
|
2011-12-30 15:41:05 +01:00 |
Jacek Caban
|
dd7a5301e6
|
jscript: Make compiler responsible for proper return from regular code vs. eval-interpreted code.
|
2011-12-30 15:41:04 +01:00 |
Jacek Caban
|
ee6e6986fb
|
jscript: Moved instr_off from statement_t to source_elements_t.
|
2011-12-29 16:18:50 +01:00 |
Jacek Caban
|
b3907c40f7
|
jscript: No longer support per-statement compilation.
|
2011-12-29 16:18:50 +01:00 |
Jacek Caban
|
6710e7ec6f
|
jscript: Get rid of stat_eval_table.
|
2011-12-29 16:18:49 +01:00 |
Jacek Caban
|
2dcb8d412f
|
jscript: Always use bytecode for while statement.
|
2011-12-29 16:18:48 +01:00 |
Jacek Caban
|
c6932d8069
|
jscript: Always use bytecode for try statement.
|
2011-12-29 16:18:47 +01:00 |
Jacek Caban
|
985c6a1943
|
jscript: Always use bytecode for switch statement.
|
2011-12-29 16:18:46 +01:00 |
Jacek Caban
|
f904bc8e78
|
jscript: Always use bytecode for for statement.
|
2011-12-29 16:18:46 +01:00 |
Jacek Caban
|
2c0920f8c3
|
jscript: Always use bytecode for for..in statement.
|
2011-12-29 16:18:45 +01:00 |
Jacek Caban
|
1c0fe6002d
|
jscript: Always use bytecode for with statement.
|
2011-12-29 16:18:44 +01:00 |
Jacek Caban
|
80113b5c5c
|
jscript: Use labels in compiler for ending loops.
|
2011-12-28 17:49:15 +01:00 |
Jacek Caban
|
3b56e49ef9
|
jscript: Added bytecode version of try statement.
|
2011-12-28 17:48:48 +01:00 |
Jacek Caban
|
02ff8d1853
|
jscript: Use bytecode for throw statement.
|
2011-12-28 17:48:42 +01:00 |
Jacek Caban
|
3f4f9f0f40
|
jscript: Rename throw opcode to throw_ref.
|
2011-12-28 17:48:37 +01:00 |
Jacek Caban
|
661241a392
|
jscript: Added bytecode version of for..in statement.
|
2011-12-28 17:48:32 +01:00 |
Jacek Caban
|
a6530f4032
|
jscript: Use bytecode for labelled statement stub.
|
2011-12-27 16:55:09 +01:00 |
Jacek Caban
|
c57dd899a4
|
jscript: Added bytecode version of switch statement.
|
2011-12-27 16:55:08 +01:00 |
Jacek Caban
|
abffe88e19
|
jscript: Added bytecode version of with statement.
|
2011-12-27 16:55:08 +01:00 |
Jacek Caban
|
95677c5099
|
jscript: Added new jmp_z opcode, more appropriate for branches.
|
2011-12-20 20:06:30 +01:00 |
Jacek Caban
|
e5d7d50faa
|
jscript: Renamed jmp_z and jmp_nz to cnd_z and cnd_nz.
|
2011-12-20 20:06:30 +01:00 |
Jacek Caban
|
00030ff66f
|
jscript: Get rid of no longer needed identifier in exprval_t.
|
2011-12-20 20:06:29 +01:00 |
Jacek Caban
|
f5a3f1417e
|
jscript: Get rid of no longer used expr_eval flags.
|
2011-12-20 20:06:29 +01:00 |
Jacek Caban
|
5c158f1df6
|
jscript: Use compiler to handle variable statement.
|
2011-12-20 20:06:28 +01:00 |
Jacek Caban
|
7c3160ae02
|
jscript: Use compiler for hanling empty statements.
|
2011-12-19 20:15:47 +01:00 |
Jacek Caban
|
cf2fc11e31
|
jscript: Use compiler for handling if statement.
|
2011-12-19 20:15:47 +01:00 |
Jacek Caban
|
ccba279b89
|
jscript: Use compiler for handling expression statements.
|
2011-12-19 20:15:47 +01:00 |
Jacek Caban
|
2f3e27f09a
|
jscript: Use bytecode for execution main code block in exec_source.
|
2011-12-19 20:15:46 +01:00 |
Jacek Caban
|
f6023c428a
|
jscript: Use bytecode for block statement implementation.
|
2011-12-19 20:15:46 +01:00 |
Jacek Caban
|
42aefd424d
|
jscript: Store type information in statement nodes.
|
2011-12-19 20:15:45 +01:00 |
Jacek Caban
|
6b1077e2cb
|
jscript: Invoke bytecode directly from expr_eval.
|
2011-12-16 16:38:29 +01:00 |
Jacek Caban
|
fecc2fcb5e
|
jscript: Get rid of no longer needed expression eval entry.
|
2011-12-16 16:38:28 +01:00 |
Jacek Caban
|
5e6faaea12
|
jscript: Use bytecode for object literal implementation.
|
2011-12-16 16:38:28 +01:00 |
Jacek Caban
|
b268e41da6
|
jscript: Use bytecode for function expression implementation.
|
2011-12-16 16:38:28 +01:00 |
Jacek Caban
|
63366f8f1b
|
jscript: Always use compiler for member, array and identifier expressions.
|
2011-12-15 17:46:47 +01:00 |