summaryrefslogtreecommitdiffstatshomepage
path: root/py/scope.h
Commit message (Expand)AuthorAge
* py/emitglue: Include fun_data_len in mp_raw_code_t only when saving.Damien George2024-02-16
* all: Fix spelling mistakes based on codespell check.Damien George2023-04-27
* py/emitcommon: Don't implicitly close class vars that are assigned to.Damien George2022-05-03
* py: Rework bytecode and .mpy file format to be mostly static data.Damien George2022-02-24
* py/scope: Name and use id_kind_type_t.Emil Renner Berthing2020-10-22
* py/compile: Convert scope test to SCOPE_IS_COMP_LIKE macro.Damien George2020-06-16
* py/scope: Optimise scope_find_or_add_id to not need "added" arg.Damien George2018-10-28
* py/compile: Fix case of eager implicit conversion of local to nonlocal.Damien George2018-10-28
* py/emitnative: Place const objs for native code in separate const table.Damien George2018-09-27
* py/emit: Completely remove set_native_type, arg type is set in compiler.Damien George2018-09-15
* py/emit: Move MP_EMIT_OPT_xxx enums from compile.h to emitglue.h.Damien George2018-09-15
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* all: Unify header guard usage.Alexander Steffen2017-07-18
* py/scope: Factor common code to find locals and close over them.Damien George2016-09-30
* py/scope: Shrink scope_t struct by 1 machine word.Damien George2016-09-30
* py/scope: Use lookup-table to determine a scope's simple name.Damien George2016-09-30
* py: Put all bytecode state (arg count, etc) in bytecode.Damien George2015-11-13
* unix-cpy: Remove unix-cpy. It's no longer needed.Damien George2015-08-17
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Move global/nonlocal decl code to compiler for proper SyntaxError.Damien George2014-12-21
* py: Convert [u]int to mp_[u]int_t in emit.h and associated .c files.Damien George2014-09-08
* py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George2014-08-30
* Add license header to (almost) all files.Damien George2014-05-03
* py: Implement keyword-only args.Damien George2014-04-27
* py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George2014-04-13
* py: Properly implement deletion of locals and derefs, and detect errors.Damien George2014-04-09
* py, compiler: Turn id_info_t.param into a set of flags.Damien George2014-04-09
* py, compiler: Clean up and compress scope/compile structures.Damien George2014-04-09
* py: Calculate maximum exception stack size in compiler.Damien George2014-03-27
* py: Pass all scope flags through to runtime.Damien George2014-02-15
* mp_compile(): Properly free module_scope and all nested scopes.Paul Sokolovsky2014-01-23
* py: Add module/function/class name to exceptions.Damien George2014-01-19
* py: make closures work.Damien George2013-12-30
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* py: work towards working closures.Damien2013-12-11
* Add local_num skeleton framework to deref/closure emit calls.Damien2013-10-20
* Implement built-in decorators to select emit type.Damien2013-10-05
* Further factorise PASS_1 out of specific emit code.Damien2013-10-05
* Restructure emit so it goes through a method table.Damien2013-10-05
* Initial commit.Damien2013-10-04