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/src/instructions.ts | |
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/src/instructions.ts')
-rw-r--r-- | packages/sol-cov/src/instructions.ts | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/packages/sol-cov/src/instructions.ts b/packages/sol-cov/src/instructions.ts index c6506e58d..40987dbe5 100644 --- a/packages/sol-cov/src/instructions.ts +++ b/packages/sol-cov/src/instructions.ts @@ -1,9 +1,8 @@ -// tslint:disable:number-literal-format -const PUSH1 = 0x60; -const PUSH32 = 0x7f; -const isPush = (inst: number) => inst >= PUSH1 && inst <= PUSH32; +import { constants } from './constants'; -const pushDataLength = (inst: number) => inst - PUSH1 + 1; +const isPush = (inst: number) => inst >= constants.PUSH1 && inst <= constants.PUSH32; + +const pushDataLength = (inst: number) => inst - constants.PUSH1 + 1; const instructionLength = (inst: number) => (isPush(inst) ? pushDataLength(inst) + 1 : 1); |