aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.h
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-12-15 18:43:59 +0800
committerchriseth <c@ethdev.com>2015-12-15 18:43:59 +0800
commit591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0 (patch)
tree282c36887814420e2fa86e132587ec9f192f30ad /libsolidity/interface/CompilerStack.h
parent98684cca9035c754adcdc99fd196716cb7802efd (diff)
parent53da78e6091d9bb0229b4a54a0042e23487550db (diff)
downloaddexon-solidity-591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0.tar
dexon-solidity-591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0.tar.gz
dexon-solidity-591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0.tar.bz2
dexon-solidity-591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0.tar.lz
dexon-solidity-591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0.tar.xz
dexon-solidity-591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0.tar.zst
dexon-solidity-591a4f1ff44af20fce9bafebf0fa0607e2bdfcc0.zip
Merge pull request #288 from chriseth/import_contexts
Do not clutter importee when importing.
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r--libsolidity/interface/CompilerStack.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h
index 0473d58b..3e6dc456 100644
--- a/libsolidity/interface/CompilerStack.h
+++ b/libsolidity/interface/CompilerStack.h
@@ -199,6 +199,8 @@ private:
};
void resolveImports();
+ /// @returns the absolute path corresponding to @a _path relative to @a _reference.
+ std::string absolutePath(std::string const& _path, std::string const& _reference) const;
/// Compile a single contract and put the result in @a _compiledContracts.
void compileContract(
bool _optimize,