You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using a previous version of Irony I could do the following:
var text = new StringLiteral("text", "'");
var date = new QuotedValueLiteral("datetime", "'", TypeCode.DateTime);
date.Priority = TerminalPriority.High;
If the quoted value was a datetime it would set literal as date (QuotedValueLiteral). If it wasn't a datetime it would set it as text (StringLiteral). This doesn't seem to work anymore. I have found a workaround, but figured I would point this issue out.
The text was updated successfully, but these errors were encountered:
Using a previous version of Irony I could do the following:
var text = new StringLiteral("text", "'");
var date = new QuotedValueLiteral("datetime", "'", TypeCode.DateTime);
date.Priority = TerminalPriority.High;
If the quoted value was a datetime it would set literal as date (QuotedValueLiteral). If it wasn't a datetime it would set it as text (StringLiteral). This doesn't seem to work anymore. I have found a workaround, but figured I would point this issue out.
The text was updated successfully, but these errors were encountered: