Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Implement SubInfo.transparent required for &?BLOCK
  • Loading branch information
sorear committed Oct 26, 2011
1 parent 87fff3b commit 0271633
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/CodeGen.cs
Expand Up @@ -3727,6 +3727,9 @@ public class DowncallReceiver : CallReceiver {
} else if (cmd == "sub_run_once") {
return (((SubInfo)Handle.Unbox(args[1])).special &
SubInfo.RUN_ONCE) != 0;
} else if (cmd == "sub_transparent") {
return (((SubInfo)Handle.Unbox(args[1])).special &
SubInfo.TRANSPARENT) != 0;
} else if (cmd == "sub_outervar") {
return ((SubInfo)Handle.Unbox(args[1])).outervar;
} else if (cmd == "sub_name") {
Expand Down

0 comments on commit 0271633

Please sign in to comment.