mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #6292 from ethereum/better-docu-for-param
[Trivial] Clarify documentation of ContractType::m_super
This commit is contained in:
commit
34893225ab
@ -797,6 +797,7 @@ public:
|
|||||||
return _inLibrary ? shared_from_this() : encodingType();
|
return _inLibrary ? shared_from_this() : encodingType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// See documentation of m_super
|
||||||
bool isSuper() const { return m_super; }
|
bool isSuper() const { return m_super; }
|
||||||
|
|
||||||
// @returns true if and only if the contract has a payable fallback function
|
// @returns true if and only if the contract has a payable fallback function
|
||||||
@ -813,8 +814,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
ContractDefinition const& m_contract;
|
ContractDefinition const& m_contract;
|
||||||
/// If true, it is the "super" type of the current contract, i.e. it contains only inherited
|
/// If true, this is a special "super" type of m_contract containing only members that m_contract inherited
|
||||||
/// members.
|
|
||||||
bool m_super = false;
|
bool m_super = false;
|
||||||
/// Type of the constructor, @see constructorType. Lazily initialized.
|
/// Type of the constructor, @see constructorType. Lazily initialized.
|
||||||
mutable FunctionTypePointer m_constructorType;
|
mutable FunctionTypePointer m_constructorType;
|
||||||
|
Loading…
Reference in New Issue
Block a user