Update Upsilon library

This commit is contained in:
2019-01-21 15:10:10 +01:00
parent 14b84ab4d8
commit 57b7fd1c69
8 changed files with 0 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -185,8 +185,6 @@ namespace UpsilonLanguageServer
private static readonly Regex TableMatcher = new Regex(@"table *\((?'catch'.*)\)", RegexOptions.IgnoreCase); private static readonly Regex TableMatcher = new Regex(@"table *\((?'catch'.*)\)", RegexOptions.IgnoreCase);
private static TypeContainer ParseType(string input) private static TypeContainer ParseType(string input)
{ {
if (input == null)
Debugger.Break();
input = input.Trim(); input = input.Trim();
if (string.Equals(input, "string", StringComparison.InvariantCultureIgnoreCase)) if (string.Equals(input, "string", StringComparison.InvariantCultureIgnoreCase))
return Type.String; return Type.String;