Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool-module
Manage
Activity
Members
Labels
Plan
Issues
61
Issue boards
Milestones
Wiki
Code
Merge requests
10
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool-module
Merge requests
!320
chore: remove some dbg!() calls
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
chore: remove some dbg!() calls
chore/remove-debug-output
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Georgy Moshkin
requested to merge
chore/remove-debug-output
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9858c8bc
1 commit,
1 year ago
1 file
+
1
−
1
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
tlua-derive/src/lib.rs
+
1
−
1
Options
@@ -623,7 +623,7 @@ impl<'a> VariantInfo<'a> {
.expected
(
#
name
)
.subtype
(
e
);
if
let
Some
(
i
)
=
::
std
::
num
::
NonZeroI32
::
new
(
__index
)
{
e
=
e
.actual_multiple_lua_at
(
&
__lua
,
dbg!
(
i
),
dbg!
(
n_vals
)
)
e
=
e
.actual_multiple_lua_at
(
&
__lua
,
i
,
n_vals
)
}
else
{
e
=
e
.actual
(
"no value"
)
}