Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[dotnet] Implement vivislef for PAST::Var register nodes.
  • Loading branch information
jnthn committed Nov 21, 2010
1 parent a6d8d72 commit 361ec9a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dotnet/compiler/PAST2DNSTCompiler.pm
Expand Up @@ -1046,6 +1046,9 @@ our multi sub dnst_for(PAST::Var $var) {
if $*BIND_CONTEXT {
$result.push($*BIND_VALUE);
}
elsif $var.viviself {
$result.push(dnst_for($var.viviself));
}
else {
$result.push('null');
}
Expand Down

0 comments on commit 361ec9a

Please sign in to comment.