~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to src/core/NRefactory/Project/Src/Lexer/ILexer.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
//     <copyright see="prj:///doc/copyright.txt"/>
3
3
//     <license see="prj:///doc/license.txt"/>
4
4
//     <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
5
 
//     <version>$Revision: 1965 $</version>
 
5
//     <version>$Revision: 2972 $</version>
6
6
// </file>
7
7
 
8
8
using System;
51
51
                }
52
52
                
53
53
                /// <summary>
 
54
                /// Gets/Sets if the lexer should evaluate conditional compilation symbols.
 
55
                /// </summary>
 
56
                bool EvaluateConditionalCompilation { get; set; }
 
57
                
 
58
                /// <summary>
 
59
                /// The dictionary with the conditional compilation symbols.
 
60
                /// C# ignores the value (you can use null), it just cares whether a symbol is defined.
 
61
                /// </summary>
 
62
                IDictionary<string, object> ConditionalCompilationSymbols { get; }
 
63
                
 
64
                /// <summary>
54
65
                /// Returns the comments that had been read and containing tag key words.
55
66
                /// </summary>
56
67
                List<TagComment> TagComments {
75
86
                /// <returns>An <see cref="Token"/> object.</returns>
76
87
                Token NextToken();
77
88
                
78
 
                                /// <summary>
 
89
                /// <summary>
79
90
                /// Skips to the end of the current code block.
80
91
                /// For this, the lexer must have read the next token AFTER the token opening the
81
92
                /// block (so that Lexer.Token is the block-opening token, not Lexer.LookAhead).