tidy array constructors and fix some warnings

This commit is contained in:
Dave Holoway
2020-06-10 15:11:16 +01:00
parent b175b52065
commit dd9d23c64a
4 changed files with 13 additions and 17 deletions

View File

@@ -198,6 +198,13 @@ class SourceInitialiser extends MethodBase {
this._decl = decl;
}
/**
* @returns {SourceParameter[]}
*/
get parameters() {
return [];
}
get returnType() {
return PrimitiveType.map.V;
}