Skip to content

Commit

Permalink
[js] Remove incorrect extra argument
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed May 4, 2017
1 parent 0b8270a commit 136a5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/js/perl6-runtime/runtime.js
Expand Up @@ -266,7 +266,7 @@ RakudoScalar.prototype.setupSTable = function() {

this.STable.addInternalMethod('$$isrwcont', function() {
if (this.typeObject_) return 0;
var desc = this.$$getattr(Scalar, '$!descriptor', desc);
let desc = this.$$getattr(Scalar, '$!descriptor');
return desc.$$getattr_i(ContainerDescriptor, '$!rw');
});
};
Expand Down

0 comments on commit 136a5cc

Please sign in to comment.