Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
NLua
Commits
be104eac
Commit
be104eac
authored
Jun 12, 2012
by
Megax
Browse files
* Exceptions mappa letrehozva.
parent
07842806
Changes
6
Show whitespace changes
Inline
Side-by-side
LuaInterface/LuaException.cs
→
LuaInterface/
Exceptions/
LuaException.cs
View file @
be104eac
...
...
@@ -26,7 +26,7 @@
using
System
;
using
System.Runtime.Serialization
;
namespace
LuaInterface
namespace
LuaInterface
.Exceptions
{
/// <summary>
/// Exceptions thrown by the Lua runtime
...
...
LuaInterface/LuaScriptException.cs
→
LuaInterface/
Exceptions/
LuaScriptException.cs
View file @
be104eac
...
...
@@ -25,7 +25,7 @@
using
System
;
namespace
LuaInterface
namespace
LuaInterface
.Exceptions
{
/// <summary>
/// Exceptions thrown by the Lua runtime because of errors in the script
...
...
@@ -36,7 +36,6 @@ namespace LuaInterface
/// Returns true if the exception has occured as the result of a .NET exception in user code
/// </summary>
public
bool
IsNetException
{
get
;
private
set
;
}
private
readonly
string
source
;
/// <summary>
...
...
LuaInterface/Lua.cs
View file @
be104eac
...
...
@@ -31,6 +31,7 @@ using System.Collections;
using
System.Collections.Generic
;
using
System.Collections.Specialized
;
using
LuaInterface.Event
;
using
LuaInterface.Exceptions
;
namespace
LuaInterface
{
...
...
LuaInterface/LuaInterface.csproj
View file @
be104eac
...
...
@@ -37,7 +37,6 @@
<ItemGroup>
<Compile
Include=
"CheckType.cs"
/>
<Compile
Include=
"Lua.cs"
/>
<Compile
Include=
"LuaException.cs"
/>
<Compile
Include=
"Metatables.cs"
/>
<Compile
Include=
"MethodWrapper.cs"
/>
<Compile
Include=
"ObjectTranslator.cs"
/>
...
...
@@ -49,7 +48,6 @@
<Compile
Include=
"LuaGlobalAttribute.cs"
/>
<Compile
Include=
"LuaHideAttribute.cs"
/>
<Compile
Include=
"LuaRegistrationHelper.cs"
/>
<Compile
Include=
"LuaScriptException.cs"
/>
<Compile
Include=
"LuaTable.cs"
/>
<Compile
Include=
"LuaUserData.cs"
/>
<Compile
Include=
"Extensions\GeneralExtensions.cs"
/>
...
...
@@ -63,6 +61,8 @@
<Compile
Include=
"Event\LuaDebug.cs"
/>
<Compile
Include=
"Event\DebugHookEventArgs.cs"
/>
<Compile
Include=
"Event\HookExceptionEventArgs.cs"
/>
<Compile
Include=
"Exceptions\LuaException.cs"
/>
<Compile
Include=
"Exceptions\LuaScriptException.cs"
/>
</ItemGroup>
<Import
Project=
"$(MSBuildBinPath)\Microsoft.CSharp.targets"
/>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
...
...
@@ -82,5 +82,6 @@
<Folder
Include=
"Extensions\"
/>
<Folder
Include=
"GenerateEventAssembly\"
/>
<Folder
Include=
"Event\"
/>
<Folder
Include=
"Exceptions\"
/>
</ItemGroup>
</Project>
LuaInterface/MethodWrapper.cs
View file @
be104eac
...
...
@@ -25,10 +25,11 @@
using
System
;
using
System.IO
;
using
System.Collections
;
using
System.Reflection
;
using
System.Collections.Generic
;
using
System.Diagnostics
;
using
System.Collections
;
using
System.Collections.Generic
;
using
LuaInterface.Exceptions
;
namespace
LuaInterface
{
...
...
LuaInterface/ObjectTranslator.cs
View file @
be104eac
...
...
@@ -25,10 +25,11 @@
using
System
;
using
System.IO
;
using
System.Collections
;
using
System.Reflection
;
using
System.Collections.Generic
;
using
System.Diagnostics
;
using
System.Collections
;
using
System.Collections.Generic
;
using
LuaInterface.Exceptions
;
namespace
LuaInterface
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment