Skip to content

Commit

Permalink
[js] Get rid of incorrect extra params
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Nov 20, 2017
1 parent c6c8b3f commit 670aca2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/vm/js/nqp-runtime/container-specs.js
Expand Up @@ -102,7 +102,7 @@ class NativeRef {
this.set(value);
}

$$decont_i(ctx, value) {
$$decont_i(ctx) {
return this.get();
}

Expand All @@ -118,7 +118,7 @@ class NativeRef {
return this.get().toString();
}

$$decont(ctx, value) {
$$decont(ctx) {
let hll = STable.hllOwner;
if (hll === undefined) {
hll = ctx.codeRef().staticCode.hll;
Expand Down Expand Up @@ -154,7 +154,7 @@ class NativeRef {
this.set(value);
}

$$decont_n(ctx, value) {
$$decont_n(ctx) {
return this.get();
}

Expand All @@ -170,7 +170,7 @@ class NativeRef {
return coercions.numToStr(this.get());
}

$$decont(ctx, value) {
$$decont(ctx) {
let hll = STable.hllOwner;
if (hll === undefined) {
hll = ctx.codeRef().staticCode.hll;
Expand Down Expand Up @@ -210,7 +210,7 @@ class NativeRef {
this.set(value);
}

$$decont_s(ctx, value) {
$$decont_s(ctx) {
return this.get();
}

Expand All @@ -226,7 +226,7 @@ class NativeRef {
return coercions.strToNum(this.get());
}

$$decont(ctx, value) {
$$decont(ctx) {
let hll = STable.hllOwner;
if (hll === undefined) {
hll = ctx.codeRef().staticCode.hll;
Expand Down

0 comments on commit 670aca2

Please sign in to comment.