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