mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00
return false from isNativeClassExtension (though didn't seem to make a difference)
This commit is contained in:
@ -5,6 +5,8 @@ import ts from 'typescript';
|
||||
*/
|
||||
export default function (ctx: ts.TransformationContext) {
|
||||
function isNativeClassExtension(node: ts.ClassDeclaration) {
|
||||
return false;
|
||||
|
||||
let decorators: Readonly<ts.Decorator[]>;
|
||||
|
||||
if ('canHaveDecorators' in ts && ts.canHaveDecorators(node)) {
|
||||
|
Reference in New Issue
Block a user