phases: default names is the snake_cased version of the classname
[nit.git] / src /
2015-04-17 Jean Privatphases: default names is the snake_cased version of...
2015-04-15 Jean Privatnitpretty: handle AUplusExpr and simplify binary operations
2015-04-15 Jean Privattyping: use new `operator` and `n_op` from ABinopExpr...
2015-04-15 Jean Privatsrc: implement unary plus
2015-04-15 Jean Privatparser: regenerate
2015-04-15 Jean Privatgrammar: add more combined assignment operator
2015-04-15 Jean Privatgrammar: introduce n_op and operator in AAssignOp
2015-04-15 Jean Privatparser: add ABinopExpr::operator to avoid refining...
2015-04-15 Jean Privatgrammar: keep operators in the AST for better messages
2015-04-15 Jean Privatgrammar: as unary plus operation (only for thr sake...
2015-04-15 Jean Privatsrc: improve messages (and sometime location) of errors...
2015-04-15 Jean Privatmodel: add `MClass::signature_to_s` to use in messages.
2015-04-15 Jean Privattyping: identify the node associated to method name
2015-04-14 Jean PrivatMerge: Fix type adaptation when there is loops
2015-04-14 Jean PrivatMerge: Intern new
2015-04-14 Jean PrivatMerge: Improved parallelization phase
2015-04-14 Jean Privattoolcontext: avoid duplicated messages
2015-04-14 Jean Privatcompiler: consider untyped expressions and statement...
2015-04-14 Jean Privattyping: handle `a == null` when `a` is null
2015-04-14 Jean Privattyping: shortcut `get_variable` on never-adapted variables
2015-04-11 Jean Privattyping: ensure monotony on literal arrays
2015-04-11 Jean Privattyping: revisit on type-adaptation, until there is...
2015-04-11 Jean Privattyping: mark variable dirty on type_adaptation
2015-04-11 Jean Privattyping: compute FlowContext::collect_types without...
2015-04-11 Jean Privattyping: remove cache in FlowContext
2015-04-11 Jean Privatflow: improve dot-rendering for debugging
2015-04-11 Jean Privatflow: fix loop links on continue
2015-04-11 Alexis Laferrièrenitc/ios: use a camel case version of app namespace...
2015-04-10 Alexis Laferrièrenitc/ios: remove all testing related entities from...
2015-04-10 Jean PrivatMerge: Sys is top
2015-04-10 Jean PrivatMerge: Robust IO
2015-04-10 Jean Privattyping: remove most top-level things
2015-04-10 Jean Privatmixin: look for top-level methods in `Sys`.
2015-04-10 Jean Privatmodelize_classes: top-level methods are defined in...
2015-04-10 Jean Privatengines: implement special fall-back to sys
2015-04-10 Jean Privattyping: look for method in `sys` when they are not...
2015-04-10 Jean Privatmodelize classes: process AStdClassdef before
2015-04-10 Jean Privatniti: implements native `chdir` and `mkdir` with a...
2015-04-10 Jean Privattyping: `intern` is used to refer to the plain vanilla...
2015-04-10 Jean Privatengines: ANewExpr just return the plain instance if...
2015-04-09 Jean PrivatMerge: Misc AST
2015-04-09 Jean PrivatMerge: new `with` statement
2015-04-08 Jean Privathightlight: remove two asserts that make #1247 crashes
2015-04-08 Jean Privattest_parser: add option `-x` to output XML
2015-04-08 Jean Privathighlight: add infoboxes with messages
2015-04-08 Jean Privathighlight: factorize the creation of tags
2015-04-08 Jean Privattoolcontext: error methods return the messages, to...
2015-04-08 Jean Privattoolcontext: attach errors message to their location
2015-04-08 Jean Privatparser: reuse child location when possible
2015-04-08 Jean Privatlexer: do not create useless location (for whitespaces)
2015-04-08 Jean PrivatMerge: Parallelization phase introduction
2015-04-08 Jean PrivatMerge: Not null types
2015-04-08 Jean PrivatMerge: Improve checking of virtual types
2015-04-08 Jean Privatsrc/hightlight: hightlight and do not crash on MNotNullType
2015-04-08 Jean Privatcode: remove useless `or else` now that they are detected
2015-04-08 Jean Privattyping: on type error, also indicate the resolved type
2015-04-08 Jean Privatmodel: rename `as_notnullable` to `undecorate`
2015-04-08 Jean Privattyping: add `check_can_be_null` to fix and factorize...
2015-04-08 Jean Privatmodel: add new type `MNotNullType` to force that null...
2015-04-07 Jean Privattests: add error_virtual_type.nit and error_virtual_typ...
2015-04-06 Jean Privatmodelize_property: improve the search of circularity...
2015-04-06 Jean Privatmodelize_property: use resolve_mtype_unchecked during...
2015-04-06 Jean Privatmodelize_property: remove unused ASignature::build_sign...
2015-04-04 Jean Privatmodel: extract a common proxy from MNullableType
2015-04-04 Jean Privatsrc: use MFormalType for type checks when it makes...
2015-04-04 Jean Privatmodel: introduce MFormalType as a superclass of MVirtua...
2015-04-03 Jean Privatinterpreter: interpret `with` statement
2015-04-03 Jean Privattransform: transform the `with` statement
2015-04-03 Jean Privattoolcontext: call only `errors_info` once at the end
2015-04-03 Jean Privatmodelbuilder: run_global_phases do nothing for an empty...
2015-04-03 Jean Privattyping: do not rely on `MModule.object_type` that will...
2015-04-03 Jean Privatmodel: get_primitive_class filter classes by module
2015-04-03 Jean Privattyping: be more robust on missing/buggy information
2015-04-03 Jean Privatmodelize_class: make the class-name-conflict a warning
2015-04-03 Jean Privatmodelize_property: invalidate information to avoid...
2015-04-03 Jean Privatmodelize_class: make various steps more robust if the...
2015-04-03 Jean Privatmodelbuilder: promote `get_mclass_by_name` from typing
2015-04-03 Jean Privatmodelbuilder: resolve_mtype does not crash when the...
2015-04-03 Jean Privatmodel: protect MClassDef.is_intro and provide MClass...
2015-04-03 Jean Privatloader: build_module_importation invalidates the mmodul...
2015-04-03 Jean Privatloader: the AModule.mmodule can be null if the mmodule...
2015-04-03 Jean Privatvarious phases: more robust for keep-going
2015-04-03 BlackMinouAdd the support of parametrized functions for the threa...
2015-04-03 Jean PrivatMerge: parser: add a basic sabblecc3 parser in Java
2015-04-03 Jean PrivatMerge: Unite app.nit metadata annotations common to...
2015-04-03 Jean Privatparser: add a basic sabblecc3 parser in Java
2015-04-02 Jean PrivatMerge: lib/standard/string: Added faster to_cstring...
2015-04-02 Alexis Laferrièrenitc: the iOS platform use app.nit annotations
2015-04-02 Alexis Laferrièrenitc: move up the default values of a project from...
2015-04-02 Alexis Laferrièrenitc: extract common app.nit annotations from Android
2015-04-02 Alexis Laferrièremodel: intro `MModule::first_real_mmodule` to get the...
2015-04-02 Jean PrivatMerge: Improve loader
2015-04-02 Jean PrivatMerge: nitdoc: introduce Bootstrap components
2015-04-01 Jean Privatloader: get_mgroup can be given the root directory...
2015-04-01 Jean Privatloader: get_mgroup search README in src first then...
2015-04-01 Jean Privatloader: parse_full look inside directories of projects
2015-03-31 Alexandre Terrasasrc/doc: uniformize name display
2015-03-31 Alexandre Terrasasrc/doc: migrate topmenu to new templates.
2015-03-31 Lucas Bajoletlib/standard/string: Added faster cstring method on...
2015-03-31 Jean PrivatMerge: Rewrite the coloration for properties and types.
next