Mike Krüger
52350b3cb0
Fixed resolve at location failure.
...
Was caused by an invalid token location.
13 years ago
Mike Krüger
35c8f4994d
Fixed token location.
13 years ago
Mike Krüger
46f1a2ebff
Fixed qualified alias token location.
13 years ago
Mike Krüger
7a8d41e883
Updated mcs.
13 years ago
Mike Krüger
b3dee87537
Fixed event declaration assign token location.
13 years ago
Mike Krüger
a3edf1ac62
Fixed position of unbound type arguments.
13 years ago
Daniel Grunwald
911d47cb02
Indexer declaration: make "this" a token instead of an identifier
13 years ago
Daniel Grunwald
1b5b02e0a7
Use SyntaxTree.MemberRole for assembly attributes.
13 years ago
Daniel Grunwald
a3949addb5
C# parser: preserve order of constraints
13 years ago
Mike Krüger
755e37edaa
Fixed try catch statement position + failing test.
13 years ago
Daniel Grunwald
355e3fbb63
Fix incorrect XmlDoc comment
13 years ago
Mike Krüger
8cee8f532c
Fixed some compiler warnings.
13 years ago
Mike Krüger
b7b73a0907
Fixed orderby keyword.
13 years ago
Mike Krüger
f18adf3ab1
Updated mcs.
13 years ago
Mike Krüger
8556833b4b
Took out debug code.
13 years ago
Mike Krüger
584eb443b7
[Completion] Fixed completion bug.
13 years ago
Mike Krüger
0a95901c43
The parser is now able to emit new lines in the AST. However the output visitor needs to be adjusted. (otherwise too many new lines may be inserted)
13 years ago
Mike Krüger
7d702dc862
Added work-around for unexpected parser behaviour.
13 years ago
Mike Krüger
7478e22d60
Updated mcs.
13 years ago
Mike Krüger
17b0fe0e64
[Ast] 'where' keyword was missing in parsed query where clause.
13 years ago
Mike Krüger
29a2f5728a
Fixed parser bug.
13 years ago
Mike Krüger
e77fadd5bd
Fixed parser error.
13 years ago
Mike Krüger
6820c5d253
Updated mcs.
13 years ago
Mike Krüger
5d20faf0c5
[Ast] Getting the end location of token nodes is now faster.
13 years ago
Mike Krüger
06b6e92b57
[Parser] Corrected namespace keyword location.
13 years ago
Mike Krüger
9b91922c23
Updated mcs.
13 years ago
Mike Krüger
0df05c304f
Updated mcs.
13 years ago
Daniel Grunwald
f558b300e7
Revert "[AST] Handled protected and/or internal on AST level."
...
"protected internal" and "internal protected" are the same thing in C#.
Both map to ProtectedOrInternal; the ProtectedAndInternal accessibility is
not usable from C#.
This reverts commit b5ad2882ca
.
13 years ago
Mike Krüger
b5ad2882ca
[AST] Handled protected and/or internal on AST level.
13 years ago
Mike Krüger
6efd3b949a
Revered patch from erik kallen/ignored failing test.
13 years ago
Mike Krüger
637a7daae2
Updated mcs (fixed parser bug).
13 years ago
Mike Krüger
d2038a429d
[Completion] Added conditional symbols to the completion engine
...
context.
13 years ago
Simon Lindgren
7c19dfa4ef
[Parser] Set locations of AttributeSections correctly.
13 years ago
Erik Källén
fec84f8b98
Implemented missing operation on new SeekableStreamReader
13 years ago
Erik Källén
32d43b2534
Fixed query orderings when ordering by more than one expression.
13 years ago
Mike Krüger
e97b6b22cd
[Parser] Fixed some optional comma bugs.
13 years ago
Daniel Grunwald
087aee7fe8
Simplify parser API.
13 years ago
Mike Krüger
34932efc78
[Parser] Hacked work around for parser error.
13 years ago
Mike Krüger
f81ecd7e29
[Parser] Implemented own seekable stream reader.
13 years ago
Daniel Grunwald
eaba9798d3
Rename 'cu' to 'syntaxTree'.
13 years ago
Daniel Grunwald
273178a141
Rename CompilationUnit to SyntaxTree.
13 years ago
Daniel Grunwald
cc37a7179d
TypeSystemAstBuilder: do not specify accessibility on accessors unless necessary.
...
Ported some SD4 unit tests to NR5.
13 years ago
Daniel Grunwald
4717de986e
Optimized the AstNode.Descendants property.
...
Over 3 times faster than the previous implementation - but still slower than a visitor.
Fastest is a recursive function based on a for-loop ("for (AstNode child = node.FirstChild; child != null; child = child.NextSibling)").
13 years ago
Mike Krüger
99de4e1221
Updated mcs.
13 years ago
Daniel Grunwald
9e8487329a
Change "string[] Conditionals" to "IList<string> ConditionalSymbols"
13 years ago
Daniel Grunwald
b65637108b
Implemented C# cref parser.
13 years ago
Daniel Grunwald
dd07a77ce8
CSharpParser: when parsing part of a compilation unit, detach the resulting nodes from the dummy compilation.
13 years ago
Mike Krüger
e71a8fd8b2
Fixed conditional symbol bug.
13 years ago
Mike Krüger
8090455130
[Parser] Added conditional symbols to the compilation unit.
13 years ago
Erik Källén
9ffa855b1a
Fixed failing tests.
13 years ago