Пример #1
0
 /// <summary>
 /// Converts the string representation of a symbol entry to an equivalent <see cref="SymbolEntry"/> object.
 /// </summary>
 /// <param name="expression">An expression string that contains a symbol entry to convert.</param>
 /// <param name="symbols">The symbol table for the expression.</param>
 /// <param name="isLiteral"><c>true</c> if the symbol entry indicates a literal; otherwise, <c>false</c>.</param>
 /// <returns>An object that is equivalent to the symbol entry specified in the <paramref name="expression"/> parameter.</returns>
 public static SymbolEntry Parse(String expression, SymbolTable symbols, Boolean isLiteral)
 {
     return(Parse(YacqServices.Read(expression), symbols, isLiteral));
 }