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
function CreateTestStatistic(name as string, result = "Success" as string, time = 0 as integer, errorCode = 0 as integer, errorMessage = "" as string) as object
this transpiles with my compiler, to valid brs, as follows:
function RBS_STATS_CreateTestStatistic(name as string, result = "Success" as string, time = 0 as integer, errorCode = 0 as integer, errorMessage = "" as string) as object
Howeverm the bs compiler produces the following error:
frameworkTests/source/tests/rooibosDist.brs:2043:75 - error BS1039: Expected newline or ':' after function signature
2043 function RBS_STATS_CreateTestStatistic(name as string, result as string = "Success", time as integer = 0, errorCode as integer = 0, errorMessage as string = "") as object
2043
The text was updated successfully, but these errors were encountered:
this transpiles with my compiler, to valid brs, as follows:
Howeverm the bs compiler produces the following error:
The text was updated successfully, but these errors were encountered: