[vala/wip/transform: 81/81] Allow symbol_from_string to return null
- From: Luca Bruno <lucabru src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/transform: 81/81] Allow symbol_from_string to return null
- Date: Thu, 30 Jan 2014 22:23:51 +0000 (UTC)
commit 13c85f80bd101ccc6572fe28ac60c313ca8ab9bf
Author: Luca Bruno <lucabru src gnome org>
Date: Sun Jun 9 21:22:46 2013 +0200
Allow symbol_from_string to return null
vala/valacodebuilder.vala | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/vala/valacodebuilder.vala b/vala/valacodebuilder.vala
index 8d3fec4..ea7262b 100644
--- a/vala/valacodebuilder.vala
+++ b/vala/valacodebuilder.vala
@@ -265,9 +265,12 @@ public class Vala.CodeBuilder {
}
// only qualified types, will slightly simplify the work of SymbolResolver
- public static Symbol symbol_from_string (string symbol_string, Symbol? parent_symbol = null) {
+ public static Symbol? symbol_from_string (string symbol_string, Symbol? parent_symbol = null) {
Symbol sym = parent_symbol != null ? parent_symbol : CodeContext.get().root;
foreach (unowned string s in symbol_string.split (".")) {
+ if (sym == null) {
+ break;
+ }
sym = sym.scope.lookup (s);
}
return sym;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]