diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-03-16 17:27:12 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-03-16 17:27:12 +0800 |
commit | 8f8577b7c6387c13799fc78c448d9d19cf361f40 (patch) | |
tree | 67ee8770644b2b83f2ccd764973c3d1bd1081890 /packages/sol-cov/test | |
parent | f6c01520ae75d173937f0847ac45e636b06f4146 (diff) | |
download | dexon-sol-tools-8f8577b7c6387c13799fc78c448d9d19cf361f40.tar dexon-sol-tools-8f8577b7c6387c13799fc78c448d9d19cf361f40.tar.gz dexon-sol-tools-8f8577b7c6387c13799fc78c448d9d19cf361f40.tar.bz2 dexon-sol-tools-8f8577b7c6387c13799fc78c448d9d19cf361f40.tar.lz dexon-sol-tools-8f8577b7c6387c13799fc78c448d9d19cf361f40.tar.xz dexon-sol-tools-8f8577b7c6387c13799fc78c448d9d19cf361f40.tar.zst dexon-sol-tools-8f8577b7c6387c13799fc78c448d9d19cf361f40.zip |
Move opcodes to constants
Diffstat (limited to 'packages/sol-cov/test')
-rw-r--r-- | packages/sol-cov/test/instructions_test.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/sol-cov/test/instructions_test.ts b/packages/sol-cov/test/instructions_test.ts index f64ec11ed..195dfce2f 100644 --- a/packages/sol-cov/test/instructions_test.ts +++ b/packages/sol-cov/test/instructions_test.ts @@ -3,6 +3,7 @@ import * as fs from 'fs'; import 'mocha'; import * as path from 'path'; +import { constants } from '../src/constants'; import { getPcToInstructionIndexMapping } from '../src/instructions'; const expect = chai.expect; @@ -10,10 +11,7 @@ const expect = chai.expect; describe('instructions', () => { describe('#getPcToInstructionIndexMapping', () => { it('correctly maps pcs to instruction indexed', () => { - const PUSH1 = 0x60; - const PUSH2 = 0x61; - const TIMESTAMP = 0x42; - const bytecode = new Uint8Array([PUSH1, 42, PUSH2, 1, 2, TIMESTAMP]); + const bytecode = new Uint8Array([constants.PUSH1, 42, constants.PUSH2, 1, 2, constants.TIMESTAMP]); const pcToInstruction = getPcToInstructionIndexMapping(bytecode); const expectedPcToInstruction = { '0': 0, '2': 1, '5': 2 }; expect(pcToInstruction).to.be.deep.equal(expectedPcToInstruction); |