Represents an expression which is a type candidate, a symbol of types and indicates static references.
Inheritance: YacqExpression
Beispiel #1
0
 internal static TypeCandidate TypeCandidate(TypeCandidateExpression expression)
 {
     return new TypeCandidate()
     {
         Candidates = expression.Candidates.Select(TypeRef.Serialize).ToArray(),
     };
 }
Beispiel #2
0
 private static IEnumerable<Type> GetTypes(TypeCandidateExpression expression)
 {
     return expression.Candidates.Select(Static.Type);
 }
Beispiel #3
0
 private static IEnumerable <Type> GetTypes(TypeCandidateExpression expression)
 {
     return(expression.Candidates.Select(Static.Type));
 }