Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

#1023 #1024

Closed
wants to merge 13 commits into from
1 change: 1 addition & 0 deletions .github/workflows/test-behaviour.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Behaviour tests

on:
workflow_dispatch:
jeetabhi01 marked this conversation as resolved.
Show resolved Hide resolved
push:
branches:
- main
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CLI tests

on:
workflow_dispatch:
push:
branches:
- main
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-semantic.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Semantic tests

on:
workflow_dispatch:
push:
branches:
- main
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ExternalReferenceType, FunctionCall, FunctionCallKind } from 'solc-typed-ast';
import { AST } from '../ast/ast';
import { ASTMapper } from '../ast/mapper';
import { TranspileFailedError } from '../utils/errors';
import { AST } from '../../ast/ast';
import { ASTMapper } from '../../ast/mapper';
import { TranspileFailedError } from '../../utils/errors';

/**
* Swap any builtin call to abi.encode | encodePacked | encodeWithSelector | encodeWithSignature
Expand Down
2 changes: 1 addition & 1 deletion src/passes/export.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './abiBuiltins';
export * from './builtinHandler/abiBuiltins';
jeetabhi01 marked this conversation as resolved.
Show resolved Hide resolved
export * from './annotateImplicits';
export * from './argBoundChecker';
export * from './builtinHandler/export';
Expand Down
2 changes: 1 addition & 1 deletion src/passes/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './abiBuiltins';
export * from './builtinHandler/abiBuiltins';
jeetabhi01 marked this conversation as resolved.
Show resolved Hide resolved
export * from './annotateImplicits';
export * from './argBoundChecker';
export * from './builtinHandler';
Expand Down