Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
76f0e755
Commit
76f0e755
authored
Nov 21, 2012
by
Yukihiro Matz Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
handle return from blocks, especially from lambda blocks; close #561
parent
1b2257c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
src/vm.c
src/vm.c
+17
-3
No files found.
src/vm.c
View file @
76f0e755
...
...
@@ -151,14 +151,27 @@ uvset(mrb_state *mrb, int up, int idx, mrb_value v)
mrb_write_barrier
(
mrb
,
(
struct
RBasic
*
)
e
);
}
static
inline
int
is_strict
(
mrb_state
*
mrb
,
struct
REnv
*
e
)
{
int
cioff
=
e
->
cioff
;
if
(
cioff
>=
0
&&
mrb
->
cibase
[
cioff
].
proc
&&
MRB_PROC_STRICT_P
(
mrb
->
cibase
[
cioff
].
proc
))
{
return
1
;
}
return
0
;
}
struct
REnv
*
top_env
(
struct
RProc
*
proc
)
top_env
(
mrb_state
*
mrb
,
struct
RProc
*
proc
)
{
struct
REnv
*
e
=
proc
->
env
;
if
(
is_strict
(
mrb
,
e
))
return
e
;
while
(
e
->
c
)
{
if
(
!
e
)
return
0
;
e
=
(
struct
REnv
*
)
e
->
c
;
if
(
is_strict
(
mrb
,
e
))
return
e
;
}
return
e
;
}
...
...
@@ -1165,8 +1178,9 @@ mrb_run(mrb_state *mrb, struct RProc *proc, mrb_value self)
break
;
case
OP_R_RETURN
:
if
(
!
proc
->
env
)
goto
NORMAL_RETURN
;
if
(
MRB_PROC_STRICT_P
(
proc
))
goto
NORMAL_RETURN
;
else
{
struct
REnv
*
e
=
top_env
(
proc
);
struct
REnv
*
e
=
top_env
(
mrb
,
proc
);
if
(
e
->
cioff
<
0
)
{
localjump_error
(
mrb
,
"return"
);
...
...
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