コード例 #1
0
ファイル: Parser.cs プロジェクト: ResQue1980/LoLTeamChecker
 /*Consume tokens until one matches the given token set */
 public virtual void  consumeUntil(BitSet bset)
 {
     while (LA(1) != Token.EOF_TYPE && !bset.member(LA(1)))
     {
         consume();
     }
 }
コード例 #2
0
ファイル: TreeParser.cs プロジェクト: codehaus/boo
 /*Make sure current lookahead symbol matches the given set
  * Throw an exception upon mismatch, which is catch by either the
  * error handler or by the syntactic predicate.
  */
 public virtual void  match(AST t, BitSet b)
 {
     if (t == null || t == ASTNULL || !b.member(t.Type))
     {
         throw new MismatchedTokenException(getTokenNames(), t, b, false);
     }
 }
コード例 #3
0
ファイル: CharScanner.cs プロジェクト: TRXMaik/lg3d-escher
 /*Consume chars until one matches the given set */
 public virtual void  consumeUntil(BitSet bset)
 {
     while (LA(1) != EOF_CHAR && !bset.member(LA(1)))
     {
         consume();
     }
 }
コード例 #4
0
ファイル: Parser.cs プロジェクト: jorik041/DDay-iCal-svn
		/*Make sure current lookahead symbol matches the given set
		* Throw an exception upon mismatch, which is catch by either the
		* error handler or by the syntactic predicate.
		*/
		public virtual void  match(BitSet b)
		{
			if (!b.member(LA(1)))
				throw new MismatchedTokenException(tokenNames, LT(1), b, false, getFilename());
			else
				consume();
		}
コード例 #5
0
ファイル: CharScanner.cs プロジェクト: walt-liuzw/iCalendar
 /*Consume chars until one matches the given set */
 public virtual void consumeUntil(BitSet bset)
 {
     while (cached_LA1 != EOF_CHAR && !bset.member(cached_LA1))
     {
         consume();
     }
 }
コード例 #6
0
 // Expected BitSet / not BitSet
 public MismatchedCharException(char c, BitSet set_, bool matchNot, CharScanner scanner_) :
     base("Mismatched char", scanner_.getFilename(), scanner_.getLine(), scanner_.getColumn())
 {
     mismatchType = matchNot ? CharTypeEnum.NotSetType : CharTypeEnum.SetType;
     foundChar    = c;
     bset         = set_;
     scanner      = scanner_;
 }
コード例 #7
0
 // Expected BitSet / not BitSet
 public MismatchedCharException(char c, BitSet set_, bool matchNot, CharScanner scanner_)
     : base("Mismatched char", scanner_.getFilename(), scanner_.getLine(), scanner_.getColumn())
 {
     mismatchType = matchNot ? CharTypeEnum.NotSetType : CharTypeEnum.SetType;
     foundChar = c;
     bset = set_;
     scanner = scanner_;
 }
コード例 #8
0
ファイル: CharScanner.cs プロジェクト: walt-liuzw/iCalendar
 public virtual void match(BitSet b)
 {
     if (!b.member(cached_LA1))
     {
         throw new MismatchedCharException(cached_LA1, b, false, this);
     }
     consume();
 }
コード例 #9
0
 // Expected BitSet / not BitSet
 public MismatchedTokenException(string[] tokenNames_, Token token_, BitSet set_, bool matchNot, string fileName_) :
     base("Mismatched Token", fileName_, token_.getLine(), token_.getColumn())
 {
     tokenNames   = tokenNames_;
     token        = token_;
     tokenText    = token_.getText();
     mismatchType = matchNot ? TokenTypeEnum.NotSetType : TokenTypeEnum.SetType;
     bset         = set_;
 }
コード例 #10
0
ファイル: CharScanner.cs プロジェクト: codehaus/boo
 public virtual void  match(BitSet b)
 {
     if (!b.member(LA(1)))
     {
         throw new MismatchedCharException(LA(1), b, false, this);
     }
     else
     {
         consume();
     }
 }
コード例 #11
0
 // Expected BitSet / not BitSet
 public MismatchedTokenException(string[] tokenNames_, AST node_, BitSet set_, bool matchNot) :
     base("Mismatched Token", "<AST>", -1, -1)
 {
     tokenNames = tokenNames_;
     node       = node_;
     if (node_ == null)
     {
         tokenText = "<empty tree>";
     }
     else
     {
         tokenText = node_.ToString();
     }
     mismatchType = matchNot ? TokenTypeEnum.NotSetType : TokenTypeEnum.SetType;
     bset         = set_;
 }
コード例 #12
0
        public override void  match(BitSet b)
        {
            string text = this.text.ToString();
            char   la_1 = LA(1);

            try
            {
                base.match(b);
                eventSupport.fireMatch(la_1, b, text, inputState.guessing);
            }
            catch (MismatchedCharException e)
            {
                if (inputState.guessing == 0)
                {
                    eventSupport.fireMismatch(la_1, b, text, inputState.guessing);
                }
                throw e;
            }
        }
コード例 #13
0
 // Expected BitSet / not BitSet
 public MismatchedTokenException(string[] tokenNames_, IToken token_, BitSet set_, bool matchNot, string fileName_) :
     base("Mismatched Token", fileName_, token_.getLine(), token_.getColumn())
 {
     tokenNames = tokenNames_;
     token = token_;
     tokenText = token_.getText();
     mismatchType = matchNot ? TokenTypeEnum.NotSetType : TokenTypeEnum.SetType;
     bset = set_;
 }
コード例 #14
0
 // Expected BitSet / not BitSet
 public MismatchedTokenException(string[] tokenNames_, AST node_, BitSet set_, bool matchNot) :
     base("Mismatched Token", "<AST>", -1, -1)
 {
     tokenNames = tokenNames_;
     node = node_;
     if (node_ == null)
     {
         tokenText = "<empty tree>";
     }
     else
     {
         tokenText = node_.ToString();
     }
     mismatchType = matchNot ? TokenTypeEnum.NotSetType : TokenTypeEnum.SetType;
     bset = set_;
 }
コード例 #15
0
 public virtual void  hide(BitSet mask)
 {
     hideMask = mask;
 }
コード例 #16
0
 public override void match(BitSet bitSet)               // throws MismatchedTokenException, TokenStreamException
 {
     addCurrentTokenToParseTree();
     base.match(bitSet);
 }
コード例 #17
0
 public virtual void hide(BitSet mask)
 {
     hideMask = mask;
 }
コード例 #18
0
 public TokenStreamBasicFilter(TokenStream input)
 {
     this.input  = input;
     discardMask = new BitSet();
 }
コード例 #19
0
		public TokenStreamBasicFilter(TokenStream input)
		{
			this.input = input;
			discardMask = new BitSet();
		}
コード例 #20
0
ファイル: CharScanner.cs プロジェクト: 0xb1dd1e/boo
		/*Consume chars until one matches the given set */
		public virtual void  consumeUntil(BitSet bset)
		{
			while (cached_LA1 != EOF_CHAR && !bset.member(cached_LA1))
			{
				consume();
			}
		}
コード例 #21
0
		public override void match(BitSet bitSet) 	// throws MismatchedTokenException, TokenStreamException 
		{
			addCurrentTokenToParseTree();
			base.match(bitSet);
		}
コード例 #22
0
ファイル: Parser.cs プロジェクト: w4x/boolangstudio
 public virtual void recover(RecognitionException ex, BitSet tokenSet)
 {
     consume();
     consumeUntil(tokenSet);
 }
コード例 #23
0
ファイル: CharScanner.cs プロジェクト: 0xb1dd1e/boo
		public virtual void  match(BitSet b)
		{
			if (!b.member(cached_LA1))
			{
				throw new MismatchedCharException(cached_LA1, b, false, this);
			}
			consume();
		}
コード例 #24
0
 /*Consume chars until one matches the given set */
 public virtual void consumeUntil(BitSet bset)
 {
     while (LA(1) != EOF_CHAR && !bset.member(LA(1)))
     {
         consume();
     }
 }
コード例 #25
0
 public virtual void match(BitSet b)
 {
     if (!b.member(LA(1)))
     {
         throw new MismatchedCharException(LA(1), b, false, this);
     }
     else
     {
         consume();
     }
 }
コード例 #26
0
 public TokenStreamHiddenTokenFilter(TokenStream input) : base(input)
 {
     hideMask = new BitSet();
 }
コード例 #27
0
 public virtual void  discard(BitSet mask)
 {
     discardMask = mask;
 }
コード例 #28
0
ファイル: TreeParser.cs プロジェクト: 0xb1dd1e/boo
		/*Make sure current lookahead symbol matches the given set
		* Throw an exception upon mismatch, which is catch by either the
		* error handler or by the syntactic predicate.
		*/
		public virtual void  match(AST t, BitSet b)
		{
			if (t == null || t == ASTNULL || !b.member(t.Type))
			{
				throw new MismatchedTokenException(getTokenNames(), t, b, false);
			}
		}
コード例 #29
0
ファイル: Parser.cs プロジェクト: BackupTheBerlios/ccl-plugin
 /*Consume tokens until one matches the given token set */
 public virtual void consumeUntil(BitSet bset)
 {
     while (LA(1) != Token.EOF_TYPE && !bset.member(LA(1)))
     {
         consume();
     }
 }
コード例 #30
0
 public TokenStreamHiddenTokenFilter(TokenStream input)
     : base(input)
 {
     hideMask = new BitSet();
 }
コード例 #31
0
ファイル: Parser.cs プロジェクト: ResQue1980/LoLTeamChecker
 public virtual void recover(RecognitionException ex, BitSet tokenSet)
 {
     consume();
     consumeUntil(tokenSet);
 }
コード例 #32
0
ファイル: Parser.cs プロジェクト: BackupTheBerlios/ccl-plugin
 /*Make sure current lookahead symbol matches the given set
 * Throw an exception upon mismatch, which is catch by either the
 * error handler or by the syntactic predicate.
 */
 public virtual void match(BitSet b)
 {
     if (!b.member(LA(1)))
         throw new MismatchedTokenException(tokenNames, LT(1), b, false, getFilename());
     else
         consume();
 }
コード例 #33
0
		public virtual void  discard(BitSet mask)
		{
			discardMask = mask;
		}
コード例 #34
0
ファイル: DebuggingCharScanner.cs プロジェクト: 0xb1dd1e/boo
		public override void  match(BitSet b)
		{
			string text = this.text.ToString();
			char la_1 = LA(1);
			try
			{
				base.match(b);
				eventSupport.fireMatch(la_1, b, text, inputState.guessing);
			}
			catch (MismatchedCharException e)
			{
				if (inputState.guessing == 0)
					eventSupport.fireMismatch(la_1, b, text, inputState.guessing);
				throw e;
			}
		}