diff options
author | daurnimator <quae@daurnimator.com> | 2017-03-03 22:46:39 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-03-03 22:46:39 +1100 |
commit | dba35fd2956f9f6b14ea8947baa11c5e483bc407 (patch) | |
tree | 67557d7f3a58d85d07b36fe303d7c83d8e9e4aa8 /src | |
parent | eada82cc75dd0a2ad40ad25552f8e8e2c93891f8 (diff) | |
download | fengari-dba35fd2956f9f6b14ea8947baa11c5e483bc407.tar.gz fengari-dba35fd2956f9f6b14ea8947baa11c5e483bc407.tar.bz2 fengari-dba35fd2956f9f6b14ea8947baa11c5e483bc407.zip |
Remove use of 'buffer-dataview' library
Diffstat (limited to 'src')
-rw-r--r-- | src/llex.js | 1 | ||||
-rw-r--r-- | src/lundump.js | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/llex.js b/src/llex.js index 711f44b..2e79066 100644 --- a/src/llex.js +++ b/src/llex.js @@ -1,6 +1,5 @@ "use strict"; -const DataView = require('buffer-dataview'); const assert = require('assert'); const lapi = require('./lapi.js'); diff --git a/src/lundump.js b/src/lundump.js index 5a6d8c4..92063a2 100644 --- a/src/lundump.js +++ b/src/lundump.js @@ -1,7 +1,6 @@ /*jshint esversion: 6 */ "use strict"; -const DataView = require('buffer-dataview'); const fs = require('fs'); const assert = require('assert'); @@ -110,7 +109,7 @@ class BytecodeParser { } readInstruction() { - let ins = new DataView(new Buffer(this.instructionSize)); + let ins = new DataView(new ArrayBuffer(this.instructionSize)); for (let i = 0; i < this.instructionSize; i++) ins.setUint8(i, this.readByte()); |