| | |
| | | using System;
|
| | | using System.Collections;
|
| | | using System.Collections.Generic;
|
| | | using System.IO;
|
| | | using System.Linq;
|
| | | using System.Linq.Expressions;
|
| | | using System.Reflection;
|
| | | using System.Text;
|
| | |
|
| | | namespace QtVsTools.SyntaxAnalysis
|
| | | {
|
| | |
| | | public virtual Delimiter Delimiters { get { return Delimiter.None; } }
|
| | | public virtual Operand Operands { get { return Operand.None; } }
|
| | |
|
| | | protected List<IRuleAction<T>> Actions = new List<IRuleAction<T>>();
|
| | | private readonly List<IRuleAction<T>> Actions = new List<IRuleAction<T>>();
|
| | |
|
| | | protected void Init(
|
| | | int priority, RuleCallback.Selector select, RuleCallback.PreCondition pre)
|