Skip to content

Commit

Permalink
[js] Use $$ prefix for internal
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Dec 12, 2018
1 parent 7e9594a commit 6712e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vm/js/nqp-runtime/core.js
Expand Up @@ -940,10 +940,10 @@ class JSBackendStub extends NQPObject {
class NQPStub extends NQPObject {
constructor() {
super();
this.backend_ = new JSBackendStub();
this.$$backend = new JSBackendStub();
}
backend(ctx, named) {
return this.backend_;
return this.$$backend;
}
};

Expand Down

0 comments on commit 6712e86

Please sign in to comment.