summaryrefslogtreecommitdiff
path: root/src/Interpreter.ml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | expand_bottom_value
* 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
|
* Make minor modificationsSon Ho2021-11-241-8/+21
|
* Make a minor comment modificationSon Ho2021-11-241-1/+1
|
* Implement the TwoPhaseMut case in eval_rvalueSon Ho2021-11-241-5/+8
|
* Make progress on eval_rvalueSon Ho2021-11-241-2/+20
|
* Start working on eval_rvalueSon Ho2021-11-241-10/+38
|
* Update eval_operandSon Ho2021-11-241-9/+3
|
* Update update_env_along_{read,write}_placeSon Ho2021-11-241-9/+12
|
* Update expand_bottom_valueSon Ho2021-11-241-241/+15
|
* Implement {read,write}_place by using access_placeSon Ho2021-11-241-6/+55
|
* Implement access_placeSon Ho2021-11-241-0/+21
|
* Implement a general access_projection functionSon Ho2021-11-241-106/+151
|
* Start refactoring the codeSon Ho2021-11-241-184/+454
|
* Insert some sanity checksSon Ho2021-11-241-0/+3
|
* Update activate_inactivated_mut_borrowSon Ho2021-11-241-40/+103
|
* Start working on eval_rvalueSon Ho2021-11-231-2/+28
|
* Implement eval_operandSon Ho2021-11-231-7/+9
|
* Start working on eval_operandSon Ho2021-11-231-13/+49
|