> ** import clause with single quote causes the flattener stop resolving:**
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 5.5k
- Forks
- 5.4k
- PR merge metrics
- No merged PRs in 30d
Description
** import clause with single quote causes the flattener stop resolving:**
import './interfaces/IUniswapV3PoolDeployer.sol'; import './UniswapV3Pool.sol' ;
replaced the single quote with double quote can solve the problem import "./interfaces/IUniswapV3PoolDeployer.sol"; import "./UniswapV3Pool.sol" ;
the log file would show something like: ............. 2021/08/27 17:22:23 pre processing contracts'./interfaces/IUniswapV3PoolDeployer.sol' 2021/08/27 17:22:23 pre processing contracts'./UniswapV3Pool.sol' ..............
Originally posted by @bigg27 in https://github.com/DaveAppleton/SolidityFlattery/issues/1#issuecomment-2372346227
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
No source file or test is named. Start by reproducing the flattener input with the single-quoted imports shown in the issue, then compare preprocessing with the double-quoted form. Done means both quote styles resolve the imported Solidity files without stopping, with coverage for the reported imports.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- solidity
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100