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
29f60815
Commit
29f60815
authored
Aug 21, 2019
by
Vinicius Jarina
Browse files
Fixed `TestInexistentExtensionMethods`
parent
fe784c20
Changes
1
Show whitespace changes
Inline
Side-by-side
tests/src/LuaTests.cs
View file @
29f60815
...
...
@@ -2036,7 +2036,8 @@ namespace NLuaTest
sw
.
Start
();
try
{
lua
.
DoString
(
" v:Lengthx() "
);
for
(
int
i
=
0
;
i
<
100
;
i
++)
lua
.
DoString
(
$" v:Lengthx
{
i
}
() "
);
}
catch
(
Exception
e
)
{
...
...
@@ -2048,7 +2049,8 @@ namespace NLuaTest
sw
.
Restart
();
try
{
lua
.
DoString
(
" v:Lengthx() "
);
for
(
int
i
=
0
;
i
<
100
;
i
++)
lua
.
DoString
(
$" v:Lengthx
{
i
}
() "
);
}
catch
(
Exception
e
)
{
...
...
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