From a73e3b4e3fdb6b563dddaa7f67d5fe69e65ca752 Mon Sep 17 00:00:00 2001 From: Johan Berntsson Date: Tue, 8 Jul 2008 03:02:11 +0000 Subject: another patch from Mike: the llscript compiler is now available in XEngine as well. Thanks Mike --- OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs | 2 ++ OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs | 2 ++ 2 files changed, 4 insertions(+) (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler') diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs index 5d66d5c..f78c801 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs @@ -26,6 +26,7 @@ */ using System;using Tools; +namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL { //%+STRING_CONSTANT+3 public class STRING_CONSTANT : TOKEN{ public override string yyname { get { return "STRING_CONSTANT"; }} @@ -18710,3 +18711,4 @@ public LSLTokens(YyLexer tks):base(tks){} public string str; } +} diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs index 61118b2..3c63610 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs @@ -26,6 +26,7 @@ */ using System;using Tools; +namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL { //%+LSLProgramRoot+95 public class LSLProgramRoot : SYMBOL{ public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax @@ -9799,3 +9800,4 @@ public LSLSyntax (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} } +} -- cgit v1.1