misc: update NOTICE
[nit.git] / src /
2011-02-15 Jean PrivatMerge branch 'update_syntax' into next
2011-02-14 Jean Privatparser: remove warning about useless cast
2011-02-14 Jean Privatparser: use break and infinite loops
2011-02-14 Jean Privatmetamodel: rename 'universal' to 'enum'
2011-02-14 Jean Privatmetamodel: rename 'universal' to 'enum'
2011-02-14 Jean Privatparser: rename 'enum' to 'universal'
2011-02-11 Jean Privatdoc: use 'module' instead of 'package' in comments
2011-02-11 Jean Privatparser: comment why !nopar is required in some place
2011-01-29 Jean PrivatMerge branch 'll-and-gg-operators' into wip
2011-01-29 Jean Privatparser: add << and >> operators
2011-01-28 Jean PrivatMerge branch 'package2module' into wip
2011-01-28 Jean PrivatMerge branch 'beef-up-gccx' into wip
2011-01-28 Jean-Sebastien Gelinasmisc: gccx does not accept more than 2 Vs (-vv), make...
2011-01-25 Jean PrivatMerge branch 'alexis/various-fixes' into wip
2011-01-25 Alexis Laferrièrecompile: Check the validity of module filename before...
2011-01-25 Jean PrivatMerge remote branch 'pu/new-style_attributes' into wip
2011-01-24 Jean Privatcompile: remove hackish optimization of Array::add
2011-01-24 Jean Privatparser: update README
2011-01-24 Jean Privatparser: use C tables in parser
2011-01-24 Jean Privatparser: use C tables in lexer
2011-01-24 Jean Privatparser: factorize the lexer big accept switch
2011-01-22 Jean Privatsyntax: new-style attributes for those without underscore
2011-01-22 Jean Privatparser: accept attribute without underscore
2011-01-22 Jean Privatparser: gnu sed do not like spaces
2011-01-21 Jean PrivatMerge remote branch 'jean-sebastien/various-fixes'...
2011-01-21 Jean-Sebastien Gelinasmisc: save backup (with extention .orig) when regenerat...
2011-01-21 Jean-Sebastien Gelinaslogs: add log information to the getter/setter inlining...
2011-01-21 Jean-Sebastien Gelinaslogs: fix logging feature, was crashing because of...
2011-01-21 Jean-Sebastien Gelinasmisc: merge src/.gitignore to repository root
2011-01-20 Jean Privatparser: rename package-related classes and properties
2011-01-20 Jean Privatparser: accept the 'module' keyword
2011-01-20 Jean Privatsrc: rename 'module' identifiers
2011-01-05 Jean Privatcompile: LOCATE_* as static const strings
2011-01-05 Jean Privatcompile: factorize abort code in the clib
2011-01-05 Jean Privatcompile: do not generate table and constructor iroutine...
2010-09-22 Jean PrivatMerge remote branch 'boa/pu/optimize_parser' into wip
2010-09-22 Jean Privatparser: factorize reduce actions
2010-08-06 Jean Privatlib: keys in maps and sets are not nullable
2010-08-04 Jean Privatparser: do not write the goto address in the generated...
2010-08-04 Jean Privatparser: add Parser::concat to factorize code
2010-08-04 Jean Privatparser: reduce some automatic inlining
2010-07-26 Jean Privatmisc: add *.log and *.dot to .gitignore
2010-07-16 Jean Privatcompile: filter some loops in program icode generation
2010-07-16 Jean Privatmetamodel: use HashSets instead of Arrays
2010-06-28 Jean PrivatMerge branch 'syntax_flow_and_scope' into wip
2010-06-24 Jean Privattools: add a valgrind helper script
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-03-11 Jean Privatsyntax: "super" is a synonym of "special"
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-02-15 Jean Privatcompile: declare NEW_NativeArray in nit_common.h
2010-02-15 Jean Privatcompile: add class compiling::CProgram to manage genera...
2010-02-15 Jean Privatcompile: use writers in icode compilation
2010-02-15 Jean Privatcompile: add module compiling_writer to replace CContext
2010-02-15 Jean Privattools: nc kill showerr on TERM/INT
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-21 Jean Privatanalysis: improve alocate_register_slots
2010-01-21 Jean Privatanalysis: simplify icode inlining
2010-01-19 Jean Privatanalysis: inline Int::enumerate_*
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: prepare stmts following loops to be unreachable
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
2010-01-14 Jean Privatnitdoc: correctly display the package path before the...
2010-01-14 Jean Privatparser: fix comment in Makefile
2010-01-11 Alexis Laferrièrecompile: add program arguments passed to C compiler...
2010-01-11 Alexis Laferrièrecompile: rename program argument no_cc to no-cc for...
2010-01-11 Jean-Sebastien Gelinascompile: remove '--dump', replaced by '--output-format...
2010-01-11 Jean-Sebastien Gelinascompile: add 'icode' as output type
2010-01-11 Jean-Sebastien Gelinasicode: add a way to output icodes without line numbers...
2010-01-11 Jean-Sebastien Gelinascompile: add a way to choose generated output format
2010-01-11 Jean-Sebastien Gelinasanalysis: add logs to dead method removal optimization
2010-01-11 Jean-Sebastien Gelinasanalysis: add logs for 'out of init getter tests' optim...
2010-01-11 Jean-Sebastien Gelinasanalysis: add 'dump_global_optimizations_information...
2010-01-11 Jean-Sebastien Gelinasanalysis: add an optimization to remove 'getter' tests...
2010-01-11 Jean-Sebastien Gelinasanalysis: add implementation for reachable methods...
2010-01-11 Jean-Sebastien Gelinasanalysis: add logs for reachable from init analysis
2010-01-11 Jean-Sebastien Gelinasanalysis: add an analysis to know if a method/iroutine...
next