summaryrefslogtreecommitdiff
path: root/src/Interpreter.ml (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix an issueSon Ho2021-11-301-15/+55
* Replace the env parameters/return types with eval_ctx in many functionsSon Ho2021-11-301-163/+166
* Make minor modificationsSon Ho2021-11-301-27/+71
* Fix another bugSon Ho2021-11-301-4/+10
* Fix more bugsSon Ho2021-11-301-7/+42
* Fix another bugSon Ho2021-11-301-1/+5
* Fix another bugSon Ho2021-11-301-1/+4
* Add more debugging facilitiesSon Ho2021-11-301-1/+10
* Fix another bugSon Ho2021-11-301-4/+8
* Debug some issues in the interpreterSon Ho2021-11-301-2/+24
* Debug some issuesSon Ho2021-11-291-6/+13
* Start deriving formatters for debuggingSon Ho2021-11-291-9/+21
* Fix a small mistakeSon Ho2021-11-291-3/+1
* Improve formattingSon Ho2021-11-291-2/+2
* Start fixing bugs in the unit test evaluationSon Ho2021-11-291-1/+7
* Fix some issues, introduce debugging log in the interpreterSon Ho2021-11-291-1/+20
* Test the unit functionsSon Ho2021-11-291-6/+6
* Start working logging and make progress on printing ASTsSon Ho2021-11-291-0/+1
* Cleanup a bit to remove the warningsSon Ho2021-11-291-11/+23
* Implement test_all_unit_functionsSon Ho2021-11-261-5/+26
* Implement test_unit_functionSon Ho2021-11-261-0/+32
* Implement box dereferencement (concrete interpreter)Son Ho2021-11-261-8/+42
* Make progress on evaluate_non_local_function_callSon Ho2021-11-261-21/+165
* Add some commentsSon Ho2021-11-261-0/+10
* Implement eval_expressionSon Ho2021-11-261-4/+72
* Make good progress on eval_local_function_callSon Ho2021-11-261-28/+114
* Update the way operands and assignments are evaluatedSon Ho2021-11-261-114/+74
* Update the env definition to make the frames easier to manipulateSon Ho2021-11-261-14/+26
* Start working on eval_local_function_callSon Ho2021-11-251-11/+47
* Start working on function callsSon Ho2021-11-251-0/+23
* Finish the implementation of set_discriminantSon Ho2021-11-251-3/+10
* Implement the Adt case of set_discriminantSon Ho2021-11-251-5/+26
* Start working on set_discriminant and factorize a bitSon Ho2021-11-251-36/+88
* Implement the assertion case of eval_statementSon Ho2021-11-251-1/+7
* Implement the Drop case of eval_statementSon Ho2021-11-251-1/+6
* Make progress on eval_statementSon Ho2021-11-251-12/+12
* Implement the Assign case of eval_statementSon Ho2021-11-251-6/+75
* Replace `open Types` by `module T = Types` in Interpreter.mlSon Ho2021-11-251-89/+88
* Replace `open Values` with `module V = Values` in InterpreterSon Ho2021-11-251-384/+412
* Replace `open Expressions` by `module E = Expressions` in Interpreter.mlSon Ho2021-11-251-65/+67
* Replace `open Contexts` by `module C = Contexts` in Interpreter.mlSon Ho2021-11-251-138/+108
* Start working on eval_statementSon Ho2021-11-251-0/+20
* Implement the Aggregate branch of eval_rvalueSon Ho2021-11-251-12/+29
* Take care of warnings and fix some mistakesSon Ho2021-11-251-18/+23
* Start working on type substitutionSon Ho2021-11-251-0/+2
* Make progress on eval_rvalue and update aggregate_kindSon Ho2021-11-241-14/+83
* Implement the discriminant case of eval_rvalueSon Ho2021-11-241-5/+21
* Implement eval_binary_opSon Ho2021-11-241-6/+72
* Update eval_rvalue to handle unary_opSon Ho2021-11-241-5/+5
* Implement eval_unary_opSon Ho2021-11-241-40/+44