Better checking for C# function parameter types
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -80,7 +80,8 @@ namespace UpsilonLanguageServer
|
||||
Name = parameterName,
|
||||
Type = ParseType(parType),
|
||||
Comment = parComment,
|
||||
IsOptional = isOptional.HasValue && isOptional.Value
|
||||
IsOptional = isOptional.HasValue && isOptional.Value,
|
||||
ActualType = parType
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,7 +33,6 @@ namespace UpsilonLanguageServer.Services
|
||||
|
||||
Session.Settings.ModuleDirectory =
|
||||
new DirectoryInfo(Path.Combine(rootUri.AbsolutePath, Session.Settings.ModuleDirectory)).FullName;
|
||||
Session.Client.Window.LogMessage(MessageType.Error, Session.Settings.ModuleDirectory);
|
||||
}
|
||||
return new InitializeResult(new ServerCapabilities
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user