Quick Search:

jump to detailed chart | hide Line History

Line Count Graph

Constraint

Branch:
Author:
Tag:
Date: help

Sort: path | last-commit | first-commit Sub Directories

Changelog

2933 by bamboo on 05 May 2008, 17:06:15 -0500 (6 days ago) fixed issue with generic parameter name resolution

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/AbstractInternalType.cs 2933 history download (+23 -12) diffs

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/InternalClass.cs 2933 history download (+3 -1) diffs

boo/trunk/tests/testcases/net2/generics/inheritance-1.boo 2933 history download (+16) new

2932 by bamboo on 05 May 2008, 16:22:48 -0500 (6 days ago) fixed issue with generic fields on .net 2

boo/trunk/src/Boo.Lang.Compiler/Steps/EmitAssembly.cs 2932 history download (+3 -4) diffs

boo/trunk/tests/testcases/net2/generics/generic-field-1.boo 2932 history download (+8) new

2931 by cedricv on 01 May 2008, 08:50:17 -0500 (10 days ago) BOO-961: Shorthand syntax for IEnumerable[of T] => T*

boo/trunk/src/Boo.Lang.Parser/boo.g 2931 history download (+6 -0) diffs

boo/trunk/src/Boo.Lang.Parser/wsaboo.g 2931 history download (+6 -0) diffs

boo/trunk/tests/testcases/net2/generics/enumerable-shorthand-1.boo 2931 history download (+20) new

2930 by cedricv on 26 April 2008, 13:54:32 -0500 (15 days ago) Merge branch 'nanorc-AUTHORS'

boo/trunk/AUTHORS 2930 history download (+11) new

boo/trunk/extras/boo.nanorc 2930 history download (+18) new

2929 by cedricv on 25 April 2008, 05:00:36 -0500 (16 days ago) support increment++/decrement-- operands on nullables

boo/trunk/src/Boo.Lang.Compiler/Steps/ProcessMethodBodies.cs 2929 history download (+4 -0) diffs

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/TypeSystemServices.cs 2929 history download (+6 -0) diffs

boo/trunk/tests/testcases/net2/generics/nullable-3.boo 2929 history download (+4 -0) diffs

2928 by cedricv on 21 April 2008, 08:34:38 -0500 (20 days ago) BOO-974 : Compiler crashes on same-class instance generic method invocation when self keyword is not used and a non-generic compatible overload exists.

boo/trunk/src/Boo.Lang.Compiler/Steps/EmitAssembly.cs 2928 history download (+3 -2) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/ProcessMethodBodies.cs 2928 history download (+10 -2) diffs

boo/trunk/tests/testcases/regression/BOO-974-1.boo 2928 history download (+12) new

2926 by cedricv on 17 April 2008, 04:07:09 -0500 (24 days ago) Fix example.

boo/trunk/examples/serializearray.boo 2926 history download (+17 -17) diffs

2925 by neoeinstein on 12 April 2008, 08:18:16 -0500 (29 days ago) BOO-995, BOO-996: Fix one file that was missed in previous commit.

boo/trunk/src/Boo.Lang.Compiler/Steps/ProcessMethodBodies.cs 2925 history download (+2 -1) diffs

2924 by neoeinstein on 12 April 2008, 08:08:04 -0500 (29 days ago) BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping constructs; Added "or" semantic to looping constructs.  With testcases galore.

boo/trunk/ast.model.boo 2924 history download (+4 -2) diffs

boo/trunk/src/Boo.Lang.Compiler/Ast/Visitors/BooPrinterVisitor.cs 2924 history download (+20 -7) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/EmitAssembly.cs 2924 history download (+25 -2) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/NormalizeIterationStatements.cs 2924 history download (+2 -1) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/OptimizeIterationStatements.cs 2924 history download (+4 -2) diffs

… 52 more files in changeset.
2923 by neoeinstein on 11 April 2008, 20:20:50 -0500 (29 days ago) BOO-835: DSL-friendly method syntax, Let's give it a testcase.

boo/trunk/tests/testcases/regression/BOO-835-1.boo 2923 history download (+28) new

2922 by neoeinstein on 11 April 2008, 08:27:50 -0500 (30 days ago) BOO-503: Also include the class member name in generated callable name if available.

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/AnonymousCallablesManager.cs 2922 history download (+14 -5) diffs

2921 by neoeinstein on 11 April 2008, 01:45:13 -0500 (30 days ago) BOO-503: Some love for compiler-generated callable definition names so that they provide some context based on where they were created to bring them on par with closure-naming.  Also made SourceLocati…

boo/trunk/src/Boo.Lang.Compiler/Ast/LexicalInfo.cs 2921 history download (+42 -2) diffs

boo/trunk/src/Boo.Lang.Compiler/Ast/Node.cs 2921 history download (+5 -1) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/ForeignReferenceCollector.cs 2921 history download (+2 -1) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/GeneratorExpressionProcessor.cs 2921 history download (+1 -1) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/ProcessClosures.cs 2921 history download (+5 -3) diffs

… 1 more file in changeset.
2920 by neoeinstein on 10 April 2008, 15:37:35 -0500 (31 days ago) BOO-992: Created two testcases (internal and external) to regress on the latest commit by Avish on ^this^ ticket

boo/trunk/tests/testcases/regression/BOO-992-1.boo 2920 history download (+43) new

boo/trunk/tests/testcases/regression/BOO-992-2.boo 2920 history download (+13) new

2919 by avish on 10 April 2008, 14:34:15 -0500 (31 days ago) BOO-922: CallableResolutionService now prefers methods having less generic parameters.

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/CallableResolutionService.cs 2919 history download (+14 -22) diffs

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/GenericsServices.cs 2919 history download (+19 -0) diffs

2917 by neoeinstein on 09 April 2008, 15:40:48 -0500 (32 days ago) BOO-979: Fixes compiler error on using internal types as parameters for external generics.

boo/trunk/src/Boo.Lang.Compiler/Steps/EmitAssembly.cs 2917 history download (+3 -1) diffs

boo/trunk/tests/testcases/regression/BOO-979-1.boo 2917 history download (+10) new

boo/trunk/tests/testcases/regression/BOO-979-2.boo 2917 history download (+10) new

2916 by neoeinstein on 09 April 2008, 15:39:15 -0500 (32 days ago) BOO-990: Allow testcases to be ignored.

boo/trunk/tests/generate_regression.boo 2916 history download (+36 -18) diffs

2915 by cedricv on 09 April 2008, 14:40:45 -0500 (32 days ago) fix crash (after normal error) when there is an invalid generic reference expression.

boo/trunk/src/Boo.Lang.Compiler/Steps/ProcessMethodBodies.cs 2915 history download (+6 -4) diffs

2914 by neoeinstein on 08 April 2008, 13:29:28 -0500 (33 days ago) Revert accidental commit of some personal debug info.

boo/trunk/src/Boo.Lang.Compiler/Boo.Lang.Compiler-VS2005.csproj 2914 history download (+0 -7) diffs

2913 by neoeinstein on 08 April 2008, 13:26:45 -0500 (33 days ago) BOO-988: WSA Boo is a first-class citizen too.  Give it the same constructs.

boo/trunk/src/Boo.Lang.Compiler/Boo.Lang.Compiler-VS2005.csproj 2913 history download (+11 -1) diffs

boo/trunk/src/Boo.Lang.Compiler/Boo.Lang.Compiler.mdp 2913 history download (+3 -0) diffs

boo/trunk/src/Boo.Lang.Parser/wsaboo.g 2913 history download (+16 -3) diffs

boo/trunk/tests/BooCompiler.Tests/BooCompiler.Tests-VS2005.csproj 2913 history download (+0 -1) diffs

boo/trunk/tests/default.build 2913 history download (+12 -16) diffs

… 4 more files in changeset.
2912 by neoeinstein on 08 April 2008, 10:50:55 -0500 (33 days ago) BOO-988: Added else block to the for and while statements, and include a suite of testcases for verification of the oddities.

boo/trunk/ast.model.boo 2912 history download (+2 -0) diffs

boo/trunk/src/Boo.Lang.Compiler/Ast/Visitors/BooPrinterVisitor.cs 2912 history download (+15 -0) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/EmitAssembly.cs 2912 history download (+4 -0) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/NormalizeIterationStatements.cs 2912 history download (+1 -0) diffs

boo/trunk/src/Boo.Lang.Compiler/Steps/OptimizeIterationStatements.cs 2912 history download (+3 -0) diffs

… 10 more files in changeset.
2911 by neoeinstein on 08 April 2008, 10:43:18 -0500 (33 days ago) BOO-987: Allow script to influence task success or failure.

boo/trunk/src/Boo.Microsoft.Build.Tasks/AbstractScript.boo 2911 history download (+4 -0) diffs

boo/trunk/src/Boo.Microsoft.Build.Tasks/ExecBoo.boo 2911 history download (+1 -0) diffs

2910 by neoeinstein on 07 April 2008, 12:16:20 -0500 (34 days ago) BOO-987: Create the ExecBoo MSBuild task (so named because of namespace conflicts).  Includes input and output parameters for MSBuild integrated fun.

boo/trunk/src/Boo.Microsoft.Build.Tasks/AbstractScript.boo 2910 history download (+44) new

boo/trunk/src/Boo.Microsoft.Build.Tasks/Boo.Microsoft.Build.Tasks.booproj 2910 history download (+1 -0) diffs

boo/trunk/src/Boo.Microsoft.Build.Tasks/Boo.Microsoft.Build.targets 2910 history download (+4 -0) diffs

boo/trunk/src/Boo.Microsoft.Build.Tasks/ExecBoo.boo 2910 history download (+138) new

boo/trunk/src/Boo.Microsoft.Build.Tasks/PrepareScriptStep.boo 2910 history download (+22) new

2909 by neoeinstein on 07 April 2008, 12:14:12 -0500 (34 days ago) BOO-986: Allow DefaultAttribute to work on parameters without an explicit type by assuming them to be object

boo/trunk/src/Boo.Lang.Extensions/Attributes/DefaultAttribute.boo 2909 history download (+8 -2) diffs

boo/trunk/tests/testcases/regression/BOO-986-1.boo 2909 history download (+8) new

2908 by cedricv on 07 April 2008, 03:30:49 -0500 (34 days ago) make boo compile with mono svn
problem was:
error CS0019: Operator `==' cannot be applied to operands of type `object' and `T'

boo/trunk/src/Boo.Lang.Compiler/Ast/NodeCollection.cs 2908 history download (+1 -1) diffs

2907 by cedricv on 06 April 2008, 16:34:22 -0500 (35 days ago) haha this was taken care of perfectly in trunk anyways.

boo/branches/generics-overloads/src/Boo.Lang.Compiler/Steps/EmitAssembly.cs 2907 history download (+3 -24) diffs

2906 by cedricv on 06 April 2008, 15:58:31 -0500 (35 days ago) allow the new testcase to compile successfully with valid IL.

boo/branches/generics-overloads/src/Boo.Lang.Compiler/Steps/EmitAssembly.cs 2906 history download (+6 -3) diffs

boo/branches/generics-overloads/tests/testcases/net2/generics/generic-ref-parameter-2.boo 2906 history download (+12) new

2905 by cedricv on 06 April 2008, 09:07:06 -0500 (35 days ago) move Error.cs's types into their own files

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/AbstractType.cs 2905 history download (+202) new/copied

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/Error.cs 2905 history download (+6 -222) diffs

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/Null.cs 2905 history download (+58) new

boo/trunk/src/Boo.Lang.Compiler/TypeSystem/Unknown.cs 2905 history download (+58) new

earlier earlier | later later
Open Source License registered to the Codehaus Project. This license of FishEye is provided to support the development of Codehaus only.
Atlassian FishEye, Subversion, CVS & Perforce analysis. (Version:1.5.1 Build:build-296 2008-04-24 ) - Administration - Page generated 2008-05-11 18:38 -0500