mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 18:17:45 +02:00
pastojs: async modifier not needed in impl
This commit is contained in:
parent
79d1c35407
commit
dc4f984172
@ -9467,7 +9467,7 @@ begin
|
||||
RaiseIncompatibleType(20170216151734,nResultTypeMismatchExpectedButFound,
|
||||
[],DeclResult,ImplResult,ImplProc);
|
||||
|
||||
if ImplProc.IsAsync<>DeclProc.IsAsync then
|
||||
if ImplProc.IsAsync and not DeclProc.IsAsync then
|
||||
RaiseMsg(20200524111856,nXModifierMismatchY,sXModifierMismatchY,['procedure type','async'],ImplProc);
|
||||
end;
|
||||
|
||||
|
@ -32694,7 +32694,7 @@ begin
|
||||
'function TObject.Run(w: word = 3): word; async;',
|
||||
'begin',
|
||||
'end;',
|
||||
'function TBird.Run(w: word = 3): word; async;',
|
||||
'function TBird.Run(w: word = 3): word;', // async modifier not needed in impl
|
||||
'var p: TJSPromise;',
|
||||
'begin',
|
||||
' p:=inherited;',
|
||||
|
Loading…
Reference in New Issue
Block a user