2005-11-29 Maverson Eduardo Schulze Rosa * test-mbas.pl: Parsing Test Files in order to find necessary compilerOptions and generate the correct CompileCommand. 2005-11-28 Maverson Eduardo Schulze Rosa * decl.cs: Avoid to stop searching for class members after encountering the first member, in order to find the inherited or overloaded members. 2005-11-28 Jelmer Vernooij * Fix to Bugzilla Bug #76476: bash-specific code in mbas/Test/misc/Makefile 2005-11-20 Jelmer Vernooij * genericparser.cs,decl.cs,class.cs: allow members with the same name as their enclosing type, just like vbc does 2005-11-19 Jelmer Vernooij * mb-parser.jay: fix error handling when array modifiers are specified on both type and variable name 2005-11-18 Jelmer Vernooij * mb-tokenizer.cs: add fix so the tokenizer no longer parses label names at the start of continuation lines 2005-11-16 Maverson Eduardo Schulze Rosa * mb-parser.jay: Do not create a set_block with ReadOnly Properties. * typemanager.cs: Search for correct DefaultPropName and the class Type that contains the Default Property. * expression.cs: Send the correct Type for porperties search; Fix Error with uses of default properties without a Default Property definition. 2005-11-09 Renato Suga * mb-parser.jay: added STOP to statement rule to allow a keyword STOP in an iteration_statement. 2005-11-07 Renato Suga * Expression.cs: commented this line: // SimpleName.Error_ObjectRefRequired (ec, loc, me.Name); 2005-11-05 Kornél Pál * AssemblyInfo.cs: Use Consts.MonoVersion as AssemblyVersion. * mbas.exe.sources: Added Consts.cs. 2005-11-02 Rafael Teixeira * typemanager.cs: avoiding some Null Pointer Exceptions in GetPertinentStandardModules 2005-11-01 Aldo Monteiro do Nascimento * mb-parser.jay: created a new parser rule to match a interface declared inside another interface: "opt_interface_declaration" * mb-parser.jay: when redeclare compiler constants no compilation error is raised, and than the redeclaring works as expected. 2005-10-31 Maverson Eduardo Schulze Rosa * ecore.cs: Fix UnboxCast Emit calling Activator.CreateInstance when necessary. 2005-10-29 Renato Suga * codegen.cs: Added static global ArrayList ArrListVersion to keep the assembly's version numbers. reating a new Version(string str) is not working. The Init() method was modified to correctly set the version value; * attribute.cs: one of its constructor was modified to pass the string version to CodeGen.ArrListVersion so that at Init () CodeGen sets the correct version. 2005-10-19 Maverson Eduardo Schulze Rosa * class.cs: Casting TypeContainer to Interface in order to call the correct overload of RootContext.RegisterOrder. 2005-10-12 Renato Suga * mb-parser.jay: foreach_statement now emits the correct error code for test ForEachC1.vb, which is an error test 2005-10-11 Maverson Eduardo Schulze Rosa * block.cs, statements.cs, mb-parser.jay: Support for On Error Goto 0, On Error Goto -1 and On Error Goto