You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.2 KiB
106 lines
2.2 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using ICSharpCode.NRefactory.VB.Dom; |
|
|
|
namespace ICSharpCode.NRefactory.VB.Parser |
|
{ |
|
public abstract class AbstractParser : IParser |
|
{ |
|
protected const int MinErrDist = 2; |
|
protected const string ErrMsgFormat = "-- line {0} col {1}: {2}"; // 0=line, 1=column, 2=text |
|
|
|
|
|
private Errors errors; |
|
private ILexer lexer; |
|
|
|
protected int errDist = MinErrDist; |
|
|
|
[CLSCompliant(false)] |
|
protected CompilationUnit compilationUnit; |
|
|
|
bool parseMethodContents = true; |
|
|
|
public bool ParseMethodBodies { |
|
get { |
|
return parseMethodContents; |
|
} |
|
set { |
|
parseMethodContents = value; |
|
} |
|
} |
|
|
|
public ILexer Lexer { |
|
get { |
|
return lexer; |
|
} |
|
} |
|
|
|
public Errors Errors { |
|
get { |
|
return errors; |
|
} |
|
} |
|
|
|
public CompilationUnit CompilationUnit { |
|
get { |
|
return compilationUnit; |
|
} |
|
} |
|
|
|
internal AbstractParser(ILexer lexer) |
|
{ |
|
this.errors = lexer.Errors; |
|
this.lexer = lexer; |
|
errors.SynErr = new ErrorCodeProc(SynErr); |
|
} |
|
|
|
public abstract void Parse(); |
|
|
|
public abstract TypeReference ParseTypeReference (); |
|
public abstract Expression ParseExpression(); |
|
public abstract BlockStatement ParseBlock(); |
|
public abstract List<INode> ParseTypeMembers(); |
|
|
|
protected abstract void SynErr(int line, int col, int errorNumber); |
|
|
|
protected void SynErr(int n) |
|
{ |
|
if (errDist >= MinErrDist) { |
|
errors.SynErr(lexer.LookAhead.line, lexer.LookAhead.col, n); |
|
} |
|
errDist = 0; |
|
} |
|
|
|
protected void SemErr(string msg) |
|
{ |
|
if (errDist >= MinErrDist) { |
|
errors.Error(lexer.Token.line, lexer.Token.col, msg); |
|
} |
|
errDist = 0; |
|
} |
|
|
|
protected void Expect(int n) |
|
{ |
|
if (lexer.LookAhead.kind == n) { |
|
lexer.NextToken(); |
|
} else { |
|
SynErr(n); |
|
} |
|
} |
|
|
|
#region System.IDisposable interface implementation |
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1063:ImplementIDisposableCorrectly")] |
|
public void Dispose() |
|
{ |
|
errors = null; |
|
if (lexer != null) { |
|
lexer.Dispose(); |
|
} |
|
lexer = null; |
|
} |
|
#endregion |
|
} |
|
}
|
|
|