summaryrefslogtreecommitdiff
path: root/vala/valasymbolresolver.vala
diff options
context:
space:
mode:
Diffstat (limited to 'vala/valasymbolresolver.vala')
-rw-r--r--vala/valasymbolresolver.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/vala/valasymbolresolver.vala b/vala/valasymbolresolver.vala
index 8b7f75cd3..55fa94f62 100644
--- a/vala/valasymbolresolver.vala
+++ b/vala/valasymbolresolver.vala
@@ -31,7 +31,7 @@ public class Vala.SymbolResolver : CodeVisitor {
CodeContext context;
Symbol root_symbol;
Scope current_scope;
-
+
/**
* Resolve symbol names in the specified code context.
*
@@ -46,7 +46,7 @@ public class Vala.SymbolResolver : CodeVisitor {
root_symbol = null;
this.context = null;
}
-
+
public override void visit_namespace (Namespace ns) {
var old_scope = current_scope;
current_scope = ns.scope;
@@ -55,7 +55,7 @@ public class Vala.SymbolResolver : CodeVisitor {
current_scope = old_scope;
}
-
+
public override void visit_class (Class cl) {
current_scope = cl.scope;