Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-11-10* Src/Lexer/CSharp/Lexer.cs: Fixed 'Bug 552276 - MonoDevelopMike Krüger
sometimes fails to show class member list when pressing "." key after class var name.'. svn path=/trunk/monodevelop/; revision=145811
2009-10-29Flush.Lluis Sanchez
svn path=/trunk/monodevelop/; revision=145038
2009-10-26* Src/Visitors/AbstractASTVisitor.cs: Fixed 'Bug 549858 -Mike Krüger
Refactoring does not change properties in lambda expressions'. svn path=/trunk/monodevelop/; revision=144850
2009-10-20* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Fixed 'Bug 547329Mike Krüger
- Missing default policy for switch'. svn path=/trunk/monodevelop/; revision=144422
2009-10-12* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Fixed 'Bug 545901Mike Krüger
- TextEditor handling of Attributes on method parameter'. svn path=/trunk/monodevelop/; revision=143942
2009-10-09* Src/Lexer/CSharp/Lexer.cs:Mike Krüger
* Src/Lexer/AbstractLexer.cs: Fixed comment text, when comment contains a tag. svn path=/trunk/monodevelop/; revision=143871
2009-10-08* NRefactory.csproj:Mike Krüger
* Src/Parser/gen.sh: * Src/Parser/CSharp/CSharpParser.cs: Fixed 'Bug 545291 - wrong inline compilation errors when using nullable'. svn path=/trunk/monodevelop/; revision=143779
2009-10-07Bump MD version.Lluis Sanchez
svn path=/trunk/monodevelop/; revision=143615
2009-10-05* Src/Ast/Enums.cs:Mike Krüger
* Src/Parser/ModifierList.cs: Added support for protected AND internal modifier. svn path=/trunk/monodevelop/; revision=143391
2009-09-21* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Fixed 'Bug 540466Mike Krüger
- Code formatter "place else on new line" is broken'. svn path=/trunk/monodevelop/; revision=142314
2009-09-18* Src/Ast/AbstractNode.cs:Mike Krüger
* Src/Parser/CSharp/cs.ATG: * Src/Parser/CSharp/Parser.cs: * Src/Ast/General/Statement.cs: * Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs: * Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Added option to place else if on new line, elseif sections have now location set. svn path=/trunk/monodevelop/; revision=142181
2009-09-16* Src/Parser/CSharp/CSharpParser.cs:Mike Krüger
* Src/Visitors/CodeDOMOutputVisitor.cs: Fixed "Bug 539329 - System.InvalidOperationException: empty type". svn path=/trunk/monodevelop/; revision=142012
2009-09-15* Src/PrettyPrinter/AbstractOutputFormatter.cs: Indent blank linesMike Krüger
inside members. svn path=/trunk/monodevelop/; revision=141944
2009-09-15* Src/Ast/Generated.cs:Mike Krüger
* Src/Parser/CSharp/cs.ATG: * Src/Parser/VBNet/Parser.cs: * Src/Parser/CSharp/Parser.cs: * Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Added support for attributes without braces. svn path=/trunk/monodevelop/; revision=141943
2009-09-10* Src/PrettyPrinter/IOutputAstVisitor.cs: moved property toMike Krüger
interface. svn path=/trunk/monodevelop/; revision=141666
2009-08-24* Src/Location.cs:Mike Krüger
* Src/Ast/Enums.cs: * Src/Ast/INode.cs: * Src/Lexer/Token.cs: * Src/IAstVisitor.cs: * Src/Lexer/ILexer.cs: * Src/Ast/Generated.cs: * Src/Parser/Errors.cs: * Src/SnippetParser.cs: * Src/ParserFactory.cs: * Src/Ast/INullable.cs: * Src/Parser/IParser.cs: * Src/Ast/AbstractNode.cs: * Src/Parser/CSharp/cs.ATG: * Src/Ast/TypeReference.cs: * Src/Lexer/LookupTable.cs: * Src/Lexer/VBNet/Lexer.cs: * Src/OperatorPrecedence.cs: * Src/Lexer/CSharp/Lexer.cs: * Src/Lexer/VBNet/Tokens.cs: * Src/Lexer/AbstractLexer.cs: * Src/Parser/VBNet/VBNET.ATG: * Src/Parser/ModifierList.cs: * Src/Lexer/CSharp/Tokens.cs: * Src/Parser/VBNet/Parser.cs: * Src/Parser/CSharp/Parser.cs: * Src/Lexer/Special/Comment.cs: * Src/Parser/AbstractParser.cs: * Src/Ast/General/Statement.cs: * Src/Lexer/Special/ISpecial.cs: * Src/Ast/General/Expression.cs: * Src/Lexer/Special/BlankLine.cs: * Src/Parser/VBNet/VBNetParser.cs: * Src/Lexer/Special/TagComment.cs: * Src/Lexer/Special/CommentType.cs: * Src/Visitors/SetParentVisitor.cs: * Src/Ast/General/BlockStatement.cs: * Src/Parser/CSharp/CSharpParser.cs: * Src/AstBuilder/StatementBuilder.cs: * Src/Visitors/AbstractASTVisitor.cs: * Src/Visitors/ConvertVisitorBase.cs: * Src/Visitors/LookupTableVisitor.cs: * Src/Ast/General/CompilationUnit.cs: * Src/Lexer/Special/SpecialTracker.cs: * Src/Visitors/PrefixFieldsVisitor.cs: * Src/AstBuilder/ExpressionBuilder.cs: * Src/Visitors/CodeDOMOutputVisitor.cs: * Src/Visitors/ToVBNetConvertVisitor.cs: * Src/Parser/VBNet/ParamModifierList.cs: * Src/EnvironmentInformationProvider.cs: * Src/PrettyPrinter/IOutputAstVisitor.cs: * Src/Visitors/NodeTrackingAstVisitor.cs: * Src/Visitors/ToCSharpConvertVisitor.cs: * Src/Ast/General/PrimitiveExpression.cs: * Src/Visitors/AbstractAstTransformer.cs: * Src/Visitors/RenameIdentifierVisitor.cs: * Src/Visitors/NotImplementedAstVisitor.cs: * Src/PrettyPrinter/SpecialNodesInserter.cs: * Src/Lexer/CSharp/ConditionalCompilation.cs: * Src/Ast/General/LocalVariableDeclaration.cs: * Src/PrettyPrinter/CSharp/OutputFormatter.cs: * Src/Lexer/Special/PreProcessingDirective.cs: * Src/PrettyPrinter/AbstractOutputFormatter.cs: * Src/Visitors/VBNetConstructsConvertVisitor.cs: * Src/Visitors/CodeDOMVerboseOutputGenerator.cs: * Src/PrettyPrinter/VBNet/VBNetOutputVisitor.cs: * Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs: * Src/Visitors/CSharpConstructsConvertVisitor.cs: * Src/PrettyPrinter/VBNet/VBNetOutputFormatter.cs: * Src/PrettyPrinter/AbstractPrettyPrintOptions.cs: * Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: * Src/Visitors/ToVBNetRenameConflictingVariables.cs: * Src/PrettyPrinter/VBNet/VBNetPrettyPrintOptions.cs: Fixed "Bug 533666 - if/else not properly formatted" and updated nrefactory to the latest version. svn path=/trunk/monodevelop/; revision=140490
2009-07-24* Src/Visitors/LookupTableVisitor.cs: Lookup table visitor resetsMike Krüger
now on parse. svn path=/trunk/monodevelop/; revision=138612
2009-07-24* Src/Parser/CSharp/cs.ATG:Mike Krüger
* Src/Parser/CSharp/Parser.cs: Catch clauses have now set their correct positions. svn path=/trunk/monodevelop/; revision=138610
2009-07-23* Src/Visitors/LookupTableVisitor.cs: Catch variable declarationsMike Krüger
are now valid in the whole catch clause, not only in the statement block. (Required for the lookup inside the variable declaration) svn path=/trunk/monodevelop/; revision=138508
2009-07-20* Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs:Mike Krüger
* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Added brace forcement pretty print options. svn path=/trunk/monodevelop/; revision=138206
2009-07-17* Src/PrettyPrinter/CSharp/OutputFormatter.cs:Mike Krüger
* Src/PrettyPrinter/AbstractOutputFormatter.cs: Comments that start line are no longer indented when outputting them. svn path=/trunk/monodevelop/; revision=138135
2009-07-17* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Fixed place elseMike Krüger
in new line. svn path=/trunk/monodevelop/; revision=138131
2009-07-13* NRefactory.csproj:Mike Krüger
* Src/Visitors/AbstractAstTransformer.cs: made node stack protected. svn path=/trunk/monodevelop/; revision=137808
2009-07-07* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: ImprovedMike Krüger
collection initializer output. svn path=/trunk/monodevelop/; revision=137482
2009-06-23* Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs:Mike Krüger
* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Added anonymous method brace style. svn path=/trunk/monodevelop/; revision=136692
2009-06-22* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: removedMike Krüger
unneccessary spaces in if section. svn path=/trunk/monodevelop/; revision=136593
2009-06-19* Src/Visitors/CodeDOMOutputVisitor.cs: Add support for comments.Michael Hutchinson
svn path=/trunk/monodevelop/; revision=136447
2009-06-18* Src/PrettyPrinter/CSharp/OutputFormatter.cs:Mike Krüger
* Src/PrettyPrinter/AbstractOutputFormatter.cs: Corrected block comment output. svn path=/trunk/monodevelop/; revision=136378
2009-06-18* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Single line ifMike Krüger
statements are now correcty indented. svn path=/trunk/monodevelop/; revision=136377
2009-06-17* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: CorrectedMike Krüger
embedded statement. svn path=/trunk/monodevelop/; revision=136299
2009-05-29* Mono.Cecil\Mono.Cecil\Mono.Cecil\BaseAssemblyResolver.cs: AllowLluis Sanchez
.net 4.0 assemblies. svn path=/trunk/monodevelop/; revision=135027
2009-05-12* contrib/NRefactory/Project/Src/Lexer/CSharp/Lexer.cs: FixedMike Krüger
compilation error. svn path=/trunk/monodevelop/; revision=133978
2009-05-07* contrib/Mono.Cecil/Mono.Cecil.csproj: Disable overflow checking.Lluis Sanchez
svn path=/trunk/monodevelop/; revision=133721
2009-04-24* Src/Lexer/AbstractLexer.cs: Allow whitespaces as symbolMike Krüger
separator/Fixed 'Bug 497682 - Specific case in which the class & method not shown'. svn path=/trunk/monodevelop/; revision=132546
2009-04-182009-04-17 Mike Kestner <mkestner@novell.com>Mike Kestner
* NRefactory.csproj: kill pre task, update outdirs plus a little hushing svn path=/trunk/monodevelop/; revision=132040
2009-04-15Bump MD version.Lluis Sanchez
svn path=/trunk/monodevelop/; revision=131791
2009-03-31* Src/Parser/CSharp/cs.ATG:Mike Krüger
* Src/Parser/CSharp/Parser.cs: * Src/Parser/CSharp/CSharpParser.cs: Added ref/out parameters for typed lambda expressions. svn path=/trunk/monodevelop/; revision=130616
2009-03-30* Src/Lexer/CSharp/Lexer.cs:Mike Krüger
* Src/Lexer/AbstractLexer.cs: Preprocessor directives #if/#elif now contain their arguments as string representation. svn path=/trunk/monodevelop/; revision=130542
2009-03-27* Src/Visitors/LookupTableVisitor.cs: Added IsQueryContinuation flagMike Krüger
to local lookup variables. This is required for resolving the "from ... where ... into VAR" constructs correctly. svn path=/trunk/monodevelop/; revision=130383
2009-03-18* NRefactory.csproj: Fix output name.Michael Hutchinson
svn path=/trunk/monodevelop/; revision=129733
2009-03-17* Src/Lexer/ILexer.cs:Mike Krüger
* Src/Lexer/CSharp/Lexer.cs: * Src/Lexer/AbstractLexer.cs: Renamed method. svn path=/trunk/monodevelop/; revision=129549
2009-03-17* Src/Lexer/ILexer.cs:Mike Krüger
* Src/Lexer/CSharp/Lexer.cs: * Src/Lexer/AbstractLexer.cs: Added SetDefinedSymbols method. svn path=/trunk/monodevelop/; revision=129547
2009-03-16* Src/PrettyPrinter/CSharp/OutputFormatter.cs:Mike Krüger
* Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs: * Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Added place on new line options. svn path=/trunk/monodevelop/; revision=129409
2009-03-16* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: fixed bracketMike Krüger
output issues. svn path=/trunk/monodevelop/; revision=129400
2009-03-15* Src/PrettyPrinter/CSharp/OutputFormatter.cs:Mike Krüger
* Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs: * Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Added some formatting options. svn path=/trunk/monodevelop/; revision=129370
2009-03-13* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: updatedMike Krüger
nrefactory. svn path=/trunk/monodevelop/; revision=129305
2009-03-13* Src/PrettyPrinter/CSharp/OutputFormatter.cs:Mike Krüger
* Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs: * Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Updated nrefactory. svn path=/trunk/monodevelop/; revision=129296
2009-03-13* Src/PrettyPrinter/CSharp/PrettyPrintOptions.cs:Mike Krüger
* Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs: Updated pretty printer. svn path=/trunk/monodevelop/; revision=129274
2009-03-10* Src/Lexer/CSharp/Lexer.cs: handled comment position elsewhere.Mike Krüger
svn path=/trunk/monodevelop/; revision=128961
2009-03-10* Src/Lexer/CSharp/Lexer.cs: fix comment position.Mike Krüger
svn path=/trunk/monodevelop/; revision=128960