moved antlr -> Spring.Expressions.Parser.antlr

This commit is contained in:
eeichinger
2009-07-29 16:29:00 +00:00
parent 10c27a42f7
commit d25b8dfcbe
124 changed files with 312 additions and 303 deletions

View File

@@ -21,10 +21,8 @@
using System;
using System.Collections;
using System.Runtime.Serialization;
using antlr.collections;
using Spring.Core.TypeResolution;
using Spring.Util;
using Spring.Core.TypeResolution;
using Spring.Expressions.Parser.antlr.collections;
namespace Spring.Expressions
{

View File

@@ -20,7 +20,7 @@
using System;
using System.Runtime.Serialization;
using antlr.collections;
using Spring.Expressions.Parser.antlr.collections;
namespace Spring.Expressions
{

View File

@@ -20,8 +20,8 @@
using System;
using System.Globalization;
using System.Runtime.Serialization;
using antlr.collections;
using System.Runtime.Serialization;
using Spring.Expressions.Parser.antlr.collections;
namespace Spring.Expressions
{

View File

@@ -23,8 +23,9 @@ using System.Collections;
using System.IO;
using System.Reflection;
using System.Runtime.Serialization;
using antlr;
using antlr.collections;
using Spring.Expressions.Parser;
using Spring.Expressions.Parser.antlr;
using Spring.Expressions.Parser.antlr.collections;
using Spring.Core;
using Spring.Util;
using StringUtils = Spring.Util.StringUtils;
@@ -86,7 +87,7 @@ namespace Spring.Expressions
static Expression()
{
// Ensure antlr is loaded (fixes GAC issues)!
Assembly antlrAss = typeof( antlr.LLkParser ).Assembly;
Assembly antlrAss = typeof( Parser.antlr.LLkParser ).Assembly;
}
/// <summary>

View File

@@ -1,7 +1,7 @@
options
{
language = "CSharp";
namespace = "Spring.Expressions";
namespace = "Spring.Expressions.Parser";
}
class ExpressionParser extends Parser;

View File

@@ -20,7 +20,7 @@
using System;
using System.Runtime.Serialization;
using antlr.collections;
using Spring.Expressions.Parser.antlr.collections;
namespace Spring.Expressions
{

View File

@@ -20,8 +20,8 @@
using System;
using System.Collections;
using System.Runtime.Serialization;
using antlr.collections;
using System.Runtime.Serialization;
using Spring.Expressions.Parser.antlr.collections;
namespace Spring.Expressions
{

View File

@@ -20,8 +20,8 @@
using System;
using System.Collections;
using System.Runtime.Serialization;
using antlr.collections;
using System.Runtime.Serialization;
using Spring.Expressions.Parser.antlr.collections;
namespace Spring.Expressions
{

View File

@@ -20,8 +20,8 @@
using System;
using System.Collections;
using System.Runtime.Serialization;
using antlr.collections;
using System.Runtime.Serialization;
using Spring.Expressions.Parser.antlr.collections;
namespace Spring.Expressions
{

View File

@@ -1,6 +1,6 @@
// $ANTLR 2.7.6 (2005-12-22): "Expression.g" -> "ExpressionLexer.cs"$
namespace Spring.Expressions
namespace Spring.Expressions.Parser
{
// Generate header specific to lexer CSharp file
using System;

View File

@@ -1,6 +1,6 @@
// $ANTLR 2.7.6 (2005-12-22): "Expression.g" -> "ExpressionParser.cs"$
namespace Spring.Expressions
namespace Spring.Expressions.Parser
{
// Generate the header common to all output files.
using System;

View File

@@ -1,6 +1,6 @@
// $ANTLR 2.7.6 (2005-12-22): "Expression.g" -> "ExpressionLexer.cs"$
namespace Spring.Expressions
namespace Spring.Expressions.Parser
{
public class ExpressionParserTokenTypes
{

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,13 +1,15 @@
using System;
using System.Collections;
using Spring.Expressions.Parser.antlr.collections;
using Spring.Expressions.Parser.antlr.collections.impl;
using Assembly = System.Reflection.Assembly;
using ArrayList = System.Collections.ArrayList;
using Debug = System.Diagnostics.Debug;
using AST = antlr.collections.AST;
using ASTArray = antlr.collections.impl.ASTArray;
using ANTLRException = antlr.ANTLRException;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
using ASTArray = Spring.Expressions.Parser.antlr.collections.impl.ASTArray;
using ANTLRException = Spring.Expressions.Parser.antlr.ANTLRException;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com
@@ -57,7 +59,7 @@ namespace antlr
/// Constructs an <c>ASTFactory</c> with the default AST node type of
/// <see cref="antlr.CommonAST"/>.
/// </summary>
public ASTFactory() : this("antlr.CommonAST")
public ASTFactory() : this(typeof(CommonAST).FullName)
{
}

View File

@@ -1,10 +1,11 @@
using System;
using Spring.Expressions.Parser.antlr.collections;
using IEnumerator = System.Collections.IEnumerator;
using AST = antlr.collections.AST;
using Token = antlr.Token;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
using Token = Spring.Expressions.Parser.antlr.Token;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
using System;
using AST = antlr.collections.AST;

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
using System;
using Queue = System.Collections.Queue;

View File

@@ -1,8 +1,8 @@
using System;
using System;
using Spring.Expressions.Parser.antlr.collections;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
using AST = antlr.collections.AST;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,13 +1,14 @@
using System;
using Spring.Expressions.Parser.antlr.collections;
using StringBuilder = System.Text.StringBuilder;
using ISerializable = System.Runtime.Serialization.ISerializable;
using TextWriter = System.IO.TextWriter;
using ArrayList = System.Collections.ArrayList;
using IEnumerator = System.Collections.IEnumerator;
using AST = antlr.collections.AST;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -4,7 +4,7 @@ using Stream = System.IO.Stream;
using BinaryReader = System.IO.BinaryReader;
using IOException = System.IO.IOException;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -4,7 +4,7 @@ using TextReader = System.IO.TextReader;
using IOException = System.IO.IOException;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,6 @@
using System;
using Spring.Expressions.Parser.antlr.collections.impl;
using Spring.Expressions.Parser.antlr.debug;
using Stream = System.IO.Stream;
using TextReader = System.IO.TextReader;
using StringBuilder = System.Text.StringBuilder;
@@ -6,10 +8,9 @@ using Hashtable = System.Collections.Hashtable;
using Assembly = System.Reflection.Assembly;
using EventHandlerList = System.ComponentModel.EventHandlerList;
using BitSet = antlr.collections.impl.BitSet;
using antlr.debug;
using BitSet = Spring.Expressions.Parser.antlr.collections.impl.BitSet;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,7 @@
using System;
using IOException = System.IO.IOException;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,8 @@
using System;
using AST = antlr.collections.AST;
using Spring.Expressions.Parser.antlr.collections;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com
@@ -56,7 +57,7 @@ namespace antlr
setText(txt);
}
override public void initialize(AST t)
override public void initialize(collections.AST t)
{
setText(t.getText());
Type = t.Type;

View File

@@ -1,7 +1,8 @@
using System;
using AST = antlr.collections.AST;
using Spring.Expressions.Parser.antlr.collections;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com
@@ -53,7 +54,7 @@ namespace antlr
return hiddenBefore;
}
override public void initialize(AST t)
override public void initialize(collections.AST t)
{
hiddenBefore = ((CommonASTWithHiddenTokens) t).getHiddenBefore();
hiddenAfter = ((CommonASTWithHiddenTokens) t).getHiddenAfter();

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,7 @@
using System;
using StringBuilder = System.Text.StringBuilder;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,8 +1,8 @@
using System;
using System;
using Spring.Expressions.Parser.antlr.collections;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
using AST = antlr.collections.AST;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
using System;
using ArrayList = System.Collections.ArrayList;

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -2,7 +2,7 @@ using System;
using Stream = System.IO.Stream;
using TextReader = System.IO.TextReader;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,9 +1,10 @@
using System;
using Spring.Expressions.Parser.antlr.collections.impl;
using StringBuilder = System.Text.StringBuilder;
using BitSet = antlr.collections.impl.BitSet;
using BitSet = Spring.Expressions.Parser.antlr.collections.impl.BitSet;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,10 +1,12 @@
using System;
using Spring.Expressions.Parser.antlr.collections;
using Spring.Expressions.Parser.antlr.collections.impl;
using StringBuilder = System.Text.StringBuilder;
using BitSet = antlr.collections.impl.BitSet;
using AST = antlr.collections.AST;
using BitSet = Spring.Expressions.Parser.antlr.collections.impl.BitSet;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,8 +1,8 @@
using System;
using System;
using Spring.Expressions.Parser.antlr.collections;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
using AST = antlr.collections.AST;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,7 @@
using System;
using StringBuilder = System.Text.StringBuilder;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator

View File

@@ -1,18 +1,19 @@
using System;
using Spring.Expressions.Parser.antlr.collections;
using Spring.Expressions.Parser.antlr.collections.impl;
using Spring.Expressions.Parser.antlr.debug;
using EventHandlerList = System.ComponentModel.EventHandlerList;
using BitSet = antlr.collections.impl.BitSet;
using AST = antlr.collections.AST;
using ASTArray = antlr.collections.impl.ASTArray;
using antlr.debug;
using MessageListener = antlr.debug.MessageListener;
using ParserListener = antlr.debug.ParserListener;
using ParserMatchListener = antlr.debug.ParserMatchListener;
using ParserTokenListener = antlr.debug.ParserTokenListener;
using SemanticPredicateListener = antlr.debug.SemanticPredicateListener;
using SyntacticPredicateListener = antlr.debug.SyntacticPredicateListener;
using TraceListener = antlr.debug.TraceListener;
using BitSet = Spring.Expressions.Parser.antlr.collections.impl.BitSet;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
using ASTArray = Spring.Expressions.Parser.antlr.collections.impl.ASTArray;
using MessageListener = Spring.Expressions.Parser.antlr.debug.MessageListener;
using ParserListener = Spring.Expressions.Parser.antlr.debug.ParserListener;
using ParserMatchListener = Spring.Expressions.Parser.antlr.debug.ParserMatchListener;
using ParserTokenListener = Spring.Expressions.Parser.antlr.debug.ParserTokenListener;
using SemanticPredicateListener = Spring.Expressions.Parser.antlr.debug.SemanticPredicateListener;
using SyntacticPredicateListener = Spring.Expressions.Parser.antlr.debug.SyntacticPredicateListener;
using TraceListener = Spring.Expressions.Parser.antlr.debug.TraceListener;
/*
private Vector messageListeners;
@@ -24,7 +25,7 @@ using TraceListener = antlr.debug.TraceListener;
private Vector traceListeners;
*/
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
internal class SupportClass
{

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
using System;

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,8 @@
using System;
using BitSet = antlr.collections.impl.BitSet;
using Spring.Expressions.Parser.antlr.collections.impl;
using BitSet = Spring.Expressions.Parser.antlr.collections.impl.BitSet;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,8 @@
using System;
using BitSet = antlr.collections.impl.BitSet;
using Spring.Expressions.Parser.antlr.collections.impl;
using BitSet = Spring.Expressions.Parser.antlr.collections.impl.BitSet;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,7 @@
using System;
using IOException = System.IO.IOException;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -2,7 +2,7 @@ using System;
using Hashtable = System.Collections.Hashtable;
using Stack = System.Collections.Stack;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,8 +1,10 @@
using System;
using AST = antlr.collections.AST;
using BitSet = antlr.collections.impl.BitSet;
using Spring.Expressions.Parser.antlr.collections;
using Spring.Expressions.Parser.antlr.collections.impl;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
using BitSet = Spring.Expressions.Parser.antlr.collections.impl.BitSet;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,6 +1,6 @@
using System;
namespace antlr
namespace Spring.Expressions.Parser.antlr
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,9 +1,9 @@
using System;
using IEnumerator = System.Collections.IEnumerator;
using IToken = antlr.IToken;
using IToken = Spring.Expressions.Parser.antlr.IToken;
namespace antlr.collections
namespace Spring.Expressions.Parser.antlr.collections
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,7 +1,7 @@
using System;
using AST = antlr.collections.AST;
using AST = Spring.Expressions.Parser.antlr.collections.AST;
namespace antlr.collections.impl
namespace Spring.Expressions.Parser.antlr.collections.impl
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -3,7 +3,7 @@ using ArrayList = System.Collections.ArrayList;
//using CharFormatter = antlr.CharFormatter;
namespace antlr.collections.impl
namespace Spring.Expressions.Parser.antlr.collections.impl
{
/*ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;
using System.Threading;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;
using ArrayList = System.Collections.ArrayList;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;
//using EventHandlerList = System.ComponentModel.EventHandlerList;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;
using ArrayList = System.Collections.ArrayList;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;
using System.Threading;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
/* ANTLR Translator Generator

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;
using System.Reflection;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

View File

@@ -1,4 +1,4 @@
namespace antlr.debug
namespace Spring.Expressions.Parser.antlr.debug
{
using System;

Some files were not shown because too many files have changed in this diff Show More