nit.git
2009-09-04 Jean Privatparser: accepts "print a[b]"
2009-09-01 Jean-Sebastien... compile: add command line option to disable SFT optimiz...
2009-09-01 Jean-Sebastien... compile: when in global compilation, compile to _glob...
2009-09-01 Jean-Sebastien... compile: move 'global' option to program instead of...
2009-09-01 Jean-Sebastien... compile: add ToolContext to Program
2009-09-01 Jean-Sebastien... compile: rename do_global_analysis to do_global_table_a...
2009-09-01 Jean-Sebastien... compile: move management and generation of iroutines...
2009-08-31 Jean Privatdoc: teach doc/advanced_options about NIT_GC_OPTION
2009-08-31 Jean Privatmisc: remove Sci-Fi example/various/glob.nit
2009-08-31 Jean Privatnitdoc: show closure in signatures
2009-08-29 Jean Privatversion: v0.3.1-git
2009-08-29 Jean Privatversion: v0.3 v0.3
2009-08-28 Jean Privatgc: disable boehm by default
2009-08-28 Jean Privatgc: add 'help' option to list all available GC
2009-08-28 Jean Privatgc: show default GC on warnings
2009-08-28 Jean Privatgc: default to nitgc when boehm is not available
2009-08-28 Jean Privatsyntax: warn on 'while true do' and suggests 'loop'
2009-08-28 Jean Privatsrc: use 'loop' for infinite loop and do-until-like
2009-08-27 Jean Privaticode: shortcut in icode generation of 'for x in [y...
2009-08-27 Jean Privatlib: add Int::enumerate_*
2009-08-27 Jean Privaticode: inline Array::iterate
2009-08-27 Jean Privaticode: generate closure for 'for'
2009-08-27 Jean Privatlib: add iterate methods on Collection
2009-08-27 Jean Privattools: activate -v and sometime -W on some commands
2009-08-27 Jean Privatc_src: update
2009-08-26 Jean Privaticode: duplicate closure declaration on ICodeN
2009-08-26 Jean Privaticode: new IEscapeMark class to bind ISeq and IEscape
2009-08-26 Jean Privaticode: new ICB::add_escape method
2009-08-26 Jean Privaticode: distinguish slots in dump
2009-08-26 Jean Privaticode: add dump for INew and ISuper
2009-08-25 Jean Privatmisc: update Changelog and NOTICE; remove BUGS and...
2009-08-25 Jean Privattools: add ncall.sh script to execute nc* in order
2009-08-25 Jean Privatmisc: new syntax file for GNU source-highlight
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 Privatlib: remove exec::kill and exec::term
2009-08-19 Jean Privatparser: set LANG=C for sed in Makefile (the sed that...
2009-08-19 Jean Privattests: fix test_extern.nit for 64bits
2009-08-19 Jean Privatgc: fix gc.c for 64bits
2009-08-19 Jean Privatlib: fix file_nit.c for 64bits
2009-08-19 Jean Privatsyntax: new 'assert else' statement
2009-08-19 Jean-Sebastien... tools: add entrypoint information to the program
2009-08-19 Jean-Sebastien... compile: generate classes init iroutines sooner to...
2009-08-19 Jean-Sebastien... compile: store class related IRoutines in MMLocalClass
2009-08-19 Jean-Sebastien... compile: extract table computation from compiling_globa...
2009-08-19 Jean-Sebastien... compile: remove GlobalAnalysis
2009-08-19 Jean-Sebastien... compile: add 'Program' class to represent a nit program
2009-08-19 Jean Privaticode: if inlining is impossible, at least use a static...
2009-08-19 Jean-Sebastien... icode: add IAllocateInstance, ICheckInstance and IInitA...
2009-08-18 Jean-Sebastien... icode: add IStaticCall
2009-08-18 Jean Privaticode: icode INew specializes IAbsCall (not ICall)
2009-08-18 Jean Privatcompile: one closure context by function, and it is...
2009-08-18 Jean Privatclib: move REG to the stack frames
2009-08-18 Jean Privatclib: rename trace_t to stack_frame_t
2009-08-18 Jean Privatgc: superficial cleaning
2009-08-17 Julien Chevaliergc: add Nit GC
2009-08-17 Julien Chevaliergc: disable Boehm general malloc and calloc overtaking
2009-08-17 Jean Privatclib: new raw_alloc and register_static_object services
2009-08-17 Julien Chevaliercompile: traces know REG variables
2009-08-17 Jean Privatcompile: initialize local REGS to NIT_NULL
2009-08-17 Julien Chevaliercompile: store instance size in class table
2009-08-17 Julien Chevaliergc: runtime option to handle different GC
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 Privatclib: move files to the clib directory
2009-08-17 Jean Privatc_src: gives c_src its own clibdir
2009-08-17 Jean Privatclib: add copyright notice to nit_{common,main}
2009-08-17 Jean Privatclib: clean spaces in nit_common.h
2009-08-17 Jean Privatc_src: copy only .o and .cksum on bootstrap
2009-08-17 Jean Privatsyntax: fatal error on unavailable primitive method
2009-08-17 Jean Privaticode: do no do recursive inline
2009-08-17 Jean Privaticode: inline methods with closures
2009-08-17 Jean Privatcompile: force inlining with special class Inline__
2009-08-17 Jean Privaticode: duplicate ICodeN::closure_defs in dup_with
2009-08-17 Jean Privaticode: use the icb to helps the icode duplication
2009-08-17 Jean Privaticode: iroutine knows its local registers
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-17 Jean Privaticode: fix slot locality for params and return
2009-08-17 Jean Privaticode: 'IRoutine::optimize' need a module
2009-08-10 Jean Privaticode: remove method info from ICodeBuilder
2009-08-10 Jean Privaticode: remove method information in IAbort
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-06 Jean Privatlib: split hash into hash_collection
2009-08-06 Jean Privatlib: new /lib/standard/collection directory
2009-08-06 Jean Privattests: remove broken shootout_pidigits
2009-08-03 Jean Privatmisc: vim: better indentation of closures
2009-08-03 Jean Privattests: do not execute while in a sub-processus
2009-08-03 Jean Privattests: use [ ] instead of [[ ]] in Makefile
2009-08-03 Jean Privattests: update nitdoc sav
2009-08-01 Jean Privatsyntax: closure are designed by their names, not their...
2009-08-01 Jean Privatsyntax: [] method can have closure definition
2009-08-01 Jean Privatparser: oneline assignment for 'return' and 'continue'
next