Skip to content

Commit

Permalink
[js] Add 'use strict'
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Jul 31, 2016
1 parent 878960d commit 36b8182
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/vm/js/nqp-runtime/array.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict';
var NQPException = require('./nqp-exception.js');

function NQPArray(array) {
Expand Down
1 change: 1 addition & 0 deletions src/vm/js/nqp-runtime/code-ref.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict';
CodeRef.cuids = {};
function CodeRef(name, cuid) {
this.name = name;
Expand Down
2 changes: 1 addition & 1 deletion src/vm/js/nqp-runtime/reprs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"use strict";
'use strict';
var sixmodel = require('./sixmodel.js');
var Hash = require('./hash.js');
var NQPInt = require('./nqp-int.js');
Expand Down
1 change: 1 addition & 0 deletions src/vm/js/nqp-runtime/sixmodel.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict';
function STable(REPR, HOW) {
this.REPR = REPR;
this.HOW = HOW;
Expand Down

0 comments on commit 36b8182

Please sign in to comment.