diff --git a/prototype/Doubt/Syntax.swift b/prototype/Doubt/Syntax.swift index 675f5e2a6..47cf327c8 100644 --- a/prototype/Doubt/Syntax.swift +++ b/prototype/Doubt/Syntax.swift @@ -113,15 +113,15 @@ public protocol SyntaxConvertible { } extension SyntaxConvertible { - static func Leaf(value: LeafType) -> Self { + public static func Leaf(value: LeafType) -> Self { return Self(syntax: .Leaf(value)) } - static func Indexed(children: [RecurType]) -> Self { + public static func Indexed(children: [RecurType]) -> Self { return Self(syntax: .Indexed(children)) } - static func Keyed(children: [String:RecurType]) -> Self { + public static func Keyed(children: [String:RecurType]) -> Self { return Self(syntax: .Keyed(children)) } }