logs: fix logging feature, was crashing because of missing visibility tests
[nit.git] / src / syntax /
2010-06-24 Jean Privatsyntax: merge ScopeContext and EscapeContext
2010-06-24 Jean Privatsyntax: split the VariableContext into a Scope and...
2010-06-24 Jean Privatsyntax: new enter_visit_block helper function
2010-06-24 Jean Privatsyntax: new mark_unreash helper function
2010-06-24 Jean Privatsyntax: factorize some block/loop structures
2010-06-15 Jean Privatsyntax: new "or else" construction
2010-02-15 Jean Privaticode: link INative with a MMMethod instead of a raw...
2010-02-15 Jean Privatmetamodel: move the extern name of a method in the...
2010-02-15 Jean Privaticode: add I*Value classes
2010-01-26 Jean Privatsyntax: refuse return in default closure definition
2010-01-22 Jean Privatmetamodel: lazily compute global properties
2010-01-22 Jean Privatsyntax: do not inherit and check all local properties
2010-01-18 Jean Privatsyntax: type error when using superstrings with nullables
2010-01-18 Jean Privatsyntax: fix code using superstrings with nullables
2010-01-18 Jean Privatsyntax: remove reachability test in ABreakExpr
2010-01-18 Jean Privatsyntax: do not nest variable context in ABlockExpr
2010-01-15 Jean Privatsyntax: allow 'null == x' and 'null != x'
2010-01-15 Jean Privatsyntax: track exits context in do blocks
2010-01-15 Jean Privatsyntax: remove VariableContex::stype=
2010-01-14 Jean Privatsyntax: stmts after loops without breaks are unreashables
2010-01-14 Jean Privatsyntax: unreachable statements are errors
2010-01-14 Jean Privatsyntax: while/loop exit type evolution
2010-01-14 Jean Privatsyntax: fix type evolution on non nullable type
2010-01-14 Jean Privatsyntax: comparing a variable with null makes it evolve...
2010-01-14 Jean Privatsyntax: merge nullable information on type evolution
2010-01-14 Jean Privatsyntax: prevent segfault on null types
2010-01-14 Jean Privatsyntax: untyped local variables are 'nullable Object'
2010-01-14 Jean Privatsyntax: real variable type evolution on IfexprExpr
2010-01-14 Jean Privatsyntax: fix variable context merge on unreashable branches
2009-08-28 Jean Privatsyntax: warn on 'while true do' and suggests 'loop'
2009-08-27 Jean Privaticode: shortcut in icode generation of 'for x in [y...
2009-08-27 Jean Privaticode: generate closure for 'for'
2009-08-26 Jean Privaticode: new ICB::add_escape method
2009-08-24 Jean Privatsyntax: break closures are implicitly ended with 'break'
2009-08-24 Jean Privatsyntax: fix 'break' with value in default closures
2009-08-20 Jean Privatsyntax: allow untyped variable declaration
2009-08-20 Jean Privatsyntax: assign variable even if there is no base type
2009-08-19 Jean Privatsyntax: new 'assert else' statement
2009-08-17 Jean Privatclib: new raw_alloc and register_static_object services
2009-08-17 Julien Chevaliercompile: give NativeArray its own C structure
2009-08-17 Julien Chevaliercompile: object_id is no more the object pointer
2009-08-17 Jean Privatsyntax: fatal error on unavailable primitive method
2009-08-17 Jean Privaticode: inline methods with closures
2009-08-17 Jean Privaticode: closures are generated within a ICodeBuilder
2009-08-17 Jean Privaticode: method inlining moves from IRoutine to ICodeBuilder
2009-08-10 Jean Privaticode: remove method info from ICodeBuilder
2009-08-06 Jean Privatsyntax: 'do' blocks only accept labelled breaks
2009-08-06 Jean Privatsyntax: error on local variable masking
2009-08-06 Jean Privatsyntax: better location for local variable declarations
2009-08-06 Jean Privatsyntax: remove local variable masking
2009-08-06 Jean Privatsyntax: add 'loop' construction
2009-08-06 Jean Privatlib: rename IndexedCollection to Sequence
2009-08-01 Jean Privatsyntax: closure are designed by their names, not their...
2009-08-01 Jean Privatsyntax: [] method can have closure definition
2009-07-31 Jean Privatparser: closure syntax use '!' instead of 'with'
2009-07-30 Jean Privatsyntax: arity missmatch error messages show prototypes
2009-07-30 Jean Privatparser: node locations are not nullable
2009-07-30 Jean Privatparser: remove useless printl method
2009-07-29 Jean Privatsyntax: vararg arguments are processed by icode
2009-07-29 Jean Privatsyntax: generalize and publicize raw_arguments concept
2009-07-28 Jean-Sebastien Gelinastools: add test to validate existence of needed classes
2009-07-28 Jean-Sebastien Gelinastools: add 'get_type_by_name' and 'get_instantiated_typ...
2009-07-27 Jean Privaticode: add lit_{null,true,false}_reg
2009-07-27 Jean Privatsyntax: handle labels for 'do'
2009-07-27 Jean Privatsyntax: handle labels for for, while and closures
2009-07-27 Jean Privatparser: rename all P* prod classes to A*
2009-07-27 Jean Privatparser: differentiate all P* and A* production classes
2009-07-27 Jean Privatsyntax: syntax tree is trashed once no more needed
2009-07-27 Jean Privatsyntax: nodes are not directly stored in MMSrc* classes
2009-07-27 Jean Privatsyntax: use chained nodes for MMSrcClasses instead...
2009-07-27 Jean Privatsyntax: remove attribute _node in MMSrcAncestor
2009-07-27 Jean Privatsyntax: remove class MMSrcTypeFormalParameter
2009-07-27 Jean Privaticode: generate null receiver runtime checks
2009-07-27 Jean Privaticode: introduce intermediate code representation
2009-07-24 Jean Privatsyntax: some cleaning to prepare intermediate code
2009-07-23 Jean-Sebastien Gelinastools: remove 'locate' from nodes and visitor
2009-07-23 Jean-Sebastien Gelinastools: add 'relative_to' to Locations
2009-07-23 Jean-Sebastien Gelinastools: add 'fatal_error' to ToolContext and visitor
2009-07-23 Jean-Sebastien Gelinastools: errors and warnings need Location
2009-07-23 Jean-Sebastien Gelinastools: add Location to MMModule
2009-07-15 Jean Privatmetamodel: new MMMethod::is_intern & is_abstract
2009-07-15 Jean Privatsyntax: add PClosureDecl::position
2009-07-15 Jean Privatparser: add Visitor::current_node and Visitor::enter_visit
2009-07-14 Jean-Sebastien Gelinastools: new ToolContext::check_errors
2009-07-14 Jean-Sebastien Gelinastools: cleanup after insertion of 'Location' class
2009-07-08 Jean Privatsyntax: promote some properties and classes from typing...
2009-07-07 Jean Privatsyntax: if absent, create classes Object and Bool in...
2009-07-07 Jean Privatsyntax: do not compute ancestors if syntax failed
2009-07-04 Jean Privatsyntax: do not process erroneous formal types
2009-07-04 Jean Privatsyntax: do not processes erroneous signatures
2009-07-04 Jean Privatsyntax: better error message for generic class arity...
2009-07-04 Jean Privatsyntax: add PType::is_typed
2009-07-04 Jean Privatsyntax: add some missing PExpr::is_typed.
2009-07-04 Jean Privatsyntax: move varctx initialization to the PClassdef
2009-06-26 Jean-Sebastien Gelinastools: more verbose information
2009-06-26 Jean Privatsyntax: 'meth' -> 'fun', 'attr' -> 'var'
2009-06-26 Jean Privatnullable: enforce static and dynamic rules.
2009-06-26 Jean Privatnullable: convert lib, tools and tests
2009-06-24 Jean Privatnullable: type, compile and test 'isset _attr'
2009-06-24 Jean Privatsyntax: no isa/as warning for double nullable formal...
next