irony_article.zip
Irony_article
irony_exprTree.jpg
irony_GrammarExplorer.jpg
Irony_src.zip
irony_src.zip
Irony_src
Irony.GrammarExplorer
.svn
all-wcprops
entries
format
prop-base
props
text-base
030.Irony.GrammarExplorer.csproj.svn-base
app.config.svn-base
fmGrammarExplorer.cs.svn-base
fmGrammarExplorer.Designer.cs.svn-base
fmGrammarExplorer.resx.svn-base
fmShowException.cs.svn-base
fmShowException.Designer.cs.svn-base
fmShowException.resx.svn-base
License.txt.svn-base
Program.cs.svn-base
tmp
prop-base
props
text-base
Properties
.svn
all-wcprops
entries
format
prop-base
props
text-base
AssemblyInfo.cs.svn-base
Resources.Designer.cs.svn-base
Resources.resx.svn-base
Settings.Designer.cs.svn-base
Settings.settings.svn-base
tmp
prop-base
props
text-base
Settings.settings
Irony.Samples
.svn
all-wcprops
entries
format
prop-base
props
text-base
020.Irony.Samples.csproj.svn-base
License.txt.svn-base
tmp
prop-base
props
text-base
OtherGrammars
.svn
all-wcprops
entries
format
prop-base
props
text-base
ExpressionGrammar.cs.svn-base
GrammarEx434.cs.svn-base
GrammarEx446.cs.svn-base
GrammarExL514.cs.svn-base
tmp
prop-base
props
text-base
Properties
.svn
all-wcprops
entries
format
prop-base
props
text-base
AssemblyInfo.cs.svn-base
tmp
prop-base
props
text-base
Python
.svn
all-wcprops
entries
format
prop-base
props
text-base
Python_auth_svn.txt.svn-base
PythonGrammar.cs.svn-base
tmp
prop-base
props
text-base
Ruby
.svn
all-wcprops
entries
format
prop-base
props
text-base
Ruby_auth.txt.svn-base
RubyGrammar.cs.svn-base
tmp
prop-base
props
text-base
Scheme
.svn
all-wcprops
entries
format
prop-base
props
text-base
SampleAstNodes.cs.svn-base
SchemeGrammar.cs.svn-base
tmp
prop-base
props
text-base
SourceSamples
.svn
all-wcprops
entries
format
prop-base
props
text-base
_about.txt.svn-base
99 bottles.py.svn-base
99 bottles.rb.svn-base
99 bottles.scm.svn-base
ExprSample.txt.svn-base
tmp
prop-base
props
text-base
99 bottles.rb
99 bottles.scm
Irony
.svn
all-wcprops
entries
format
prop-base
props
text-base
010.Irony.csproj.svn-base
Common.cs.svn-base
License.txt.svn-base
tmp
prop-base
props
text-base
Compiler
.svn
all-wcprops
entries
format
prop-base
props
text-base
CompilerContext.cs.svn-base
Enums.cs.svn-base
EventArgs.cs.svn-base
LanguageCompiler.cs.svn-base
SyntaxError.cs.svn-base
tmp
prop-base
props
text-base
AST
.svn
all-wcprops
entries
format
prop-base
props
text-base
AstNode.cs.svn-base
GenericNode.cs.svn-base
tmp
prop-base
props
text-base
Grammar
.svn
all-wcprops
entries
format
prop-base
props
text-base
BnfElement.cs.svn-base
BnfExpression.cs.svn-base
Grammar.cs.svn-base
GrammarData.cs.svn-base
GrammarDataBuilder.cs.svn-base
tmp
prop-base
props
text-base
NonTerminals
.svn
all-wcprops
entries
format
prop-base
props
text-base
NonTerminal.cs.svn-base
tmp
prop-base
props
text-base
Parser
.svn
all-wcprops
entries
format
prop-base
props
text-base
Parser.cs.svn-base
ParserStack.cs.svn-base
tmp
prop-base
props
text-base
Scanner
.svn
all-wcprops
entries
format
prop-base
props
text-base
Scanner.cs.svn-base
SourceFile.cs.svn-base
Token.cs.svn-base
tmp
prop-base
props
text-base
Terminals
.svn
all-wcprops
entries
format
prop-base
props
text-base
_Terminal.cs.svn-base
CharLiteral.cs.svn-base
CommentTerminal.cs.svn-base
ConstantSetTerminal.cs.svn-base
CustomTerminal.cs.svn-base
IdentifierTerminal.cs.svn-base
NumberTerminal.cs.svn-base
RegExBasedTerminal.cs.svn-base
StringLiteral.cs.svn-base
SymbolTerminal.cs.svn-base
tmp
prop-base
props
text-base
TokenFilters
.svn
all-wcprops
entries
format
prop-base
props
text-base
BraceMatchFilter.cs.svn-base
CodeOutlineFilter.cs.svn-base
TokenFilter.cs.svn-base
tmp
prop-base
props
text-base
Properties
.svn
all-wcprops
entries
format
prop-base
props
text-base
AssemblyInfo.cs.svn-base
tmp
prop-base
props
text-base
|
#region License
/* **********************************************************************************
* Copyright (c) Roman Ivantsov
* This source code is subject to terms and conditions of the MIT License
* for Irony. A copy of the license can be found in the License.txt file
* at the root of this distribution.
* By using this source code in any fashion, you are agreeing to be bound by the terms of the
* MIT License.
* You must not remove this notice from this software.
* **********************************************************************************/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
namespace Irony.Compiler {
//Scanner class. The Scanner's function is to transform a stream of characters into bigger aggregates/words or lexemes,
// like identifier, number, literal, etc.
public class Scanner {
public Scanner(GrammarData data) {
_data = data;
}
#region Fields: _data, _source, _context
GrammarData _data;
SourceFile _source;
CompilerContext _context;
#endregion
#region Events: TokenCreated
//Note that scanner's output stream may not contain all tokens received by parser. Additional tokens
// may be generated by intermediate token filters. To listen to token stream at parser input,
// use Parser's TokenReceived event.
public event EventHandler<TokenEventArgs> TokenCreated;
TokenEventArgs _tokenArgs = new TokenEventArgs(null);
protected void OnTokenCreated(Token token) {
if (TokenCreated == null) return;
_tokenArgs.Token = token;
TokenCreated(this, _tokenArgs);
}
#endregion
Token _currentToken;
public IEnumerable<Token> BeginScan(CompilerContext context, SourceFile source) {
_context = context;
_source = source;
_source.Reset();
while (true) {
_currentToken = ReadToken();
if (TokenCreated != null)
OnTokenCreated(_currentToken);
//if (tkn.Terminal.Category != TerminalCategory.Comment)
yield return _currentToken;
if (_currentToken.Terminal == Grammar.Eof)
yield break;
}//while
}// method
private Token ReadToken() {
string wspace = _data.Grammar.WhitespaceChars;
_source.SetNextTokenStart(wspace);
//Check for EOF
if (_source.EOF())
return new Token(Grammar.Eof, _source.TokenStart, string.Empty, Grammar.Eof.Name);
//Find matching terminal
TerminalList terms = SelectTerminals(_source.CurrentChar);
Token result = null;
int resultEndPos = 0;
foreach (Terminal term in terms) {
Token token = term.TryMatch(_context, _source);
if (token != null && (result == null || _source.Position > resultEndPos)) {
result = token;
resultEndPos = _source.Position;
}
_source.Position = _source.TokenStart.Position;
}
if (result != null) {
_source.Position = resultEndPos;
} else {
result = Grammar.CreateErrorToken(_source.TokenStart, "Invalid character: '{0}'", _source.CurrentChar);
//Primitive error recovery - skip until whitespace.
while (wspace.IndexOf(_source.CurrentChar) < 0)
_source.Position++;
}
return result;
}//method
public TerminalList SelectTerminals(char current) {
TerminalList result;
if (_data.TerminalsLookup.TryGetValue(current, out result))
return result;
else
return _data.NoPrefixTerminals;
}//Select
public override string ToString() {
return _source.ToString(); //show 30 chars starting from current position
}
}//class
}//namespace
|
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please
let us know and we'll add colourisation support for it.