Exemplo n.º 1
0
 protected override void PerformReclassification(IOilexerGrammarToken token, OilexerGrammarTokenType newClassification)
 {
     /* *
      * Reclassifications aren't necessary on the files used to
      * assist in identity resolution.
      * */
 }
Exemplo n.º 2
0
        protected override void PerformReclassification(IOilexerGrammarToken token, OilexerGrammarTokenType newClassification)
        {
            var currentTokenTag = this.tokens[token];
            var newTokenTag     = new GDTagSpan(currentTokenTag.Span, token, this.classificationTypes[newClassification]);

            this.tokens[token] = newTokenTag;
        }
Exemplo n.º 3
0
 protected abstract void PerformReclassification(IOilexerGrammarToken token, OilexerGrammarTokenType newClassification);