diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
commit | 66382c62af1be515deff66d51dba7f27e5fe4937 (patch) | |
tree | cdd661a560ef1f766889d661d8c7561d18bfbabb /src/core/parser/Scope.cpp | |
parent | 7d788f2dce18c3ba6f11f7f032d35fef2e5fa9d4 (diff) |
Renamed RttiType to Rtti
Diffstat (limited to 'src/core/parser/Scope.cpp')
-rw-r--r-- | src/core/parser/Scope.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/parser/Scope.cpp b/src/core/parser/Scope.cpp index 6e7dceb..6942b9a 100644 --- a/src/core/parser/Scope.cpp +++ b/src/core/parser/Scope.cpp @@ -46,7 +46,7 @@ GuardedScope::GuardedScope(GuardedScope &&s) /* Class ScopeBase */ Rooted<Node> ScopeBase::resolve(const std::vector<std::string> &path, - const RttiType &type, Logger &logger) + const Rtti &type, Logger &logger) { // Go up the stack and try to resolve the for (auto it = nodes.rbegin(); it != nodes.rend(); it++) { @@ -75,7 +75,7 @@ Rooted<Node> ScopeBase::resolve(const std::vector<std::string> &path, DeferredResolution::DeferredResolution(const NodeVector<Node> &nodes, const std::vector<std::string> &path, - const RttiType &type, + const Rtti &type, ResolutionResultCallback resultCallback, const SourceLocation &location) : scope(nodes), @@ -116,7 +116,7 @@ Rooted<Node> Scope::getRoot() const { return nodes.front(); } Rooted<Node> Scope::getLeaf() { return nodes.back(); } -bool Scope::resolve(const std::vector<std::string> &path, const RttiType &type, +bool Scope::resolve(const std::vector<std::string> &path, const Rtti &type, Logger &logger, ResolutionImposterCallback imposterCallback, ResolutionResultCallback resultCallback, const SourceLocation &location) @@ -128,7 +128,7 @@ bool Scope::resolve(const std::vector<std::string> &path, const RttiType &type, return true; } -bool Scope::resolve(const std::vector<std::string> &path, const RttiType &type, +bool Scope::resolve(const std::vector<std::string> &path, const Rtti &type, Logger &logger, ResolutionResultCallback resultCallback, const SourceLocation &location) { |