mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +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) {
|
export default function (ctx: ts.TransformationContext) {
|
||||||
function isNativeClassExtension(node: ts.ClassDeclaration) {
|
function isNativeClassExtension(node: ts.ClassDeclaration) {
|
||||||
|
return false;
|
||||||
|
|
||||||
let decorators: Readonly<ts.Decorator[]>;
|
let decorators: Readonly<ts.Decorator[]>;
|
||||||
|
|
||||||
if ('canHaveDecorators' in ts && ts.canHaveDecorators(node)) {
|
if ('canHaveDecorators' in ts && ts.canHaveDecorators(node)) {
|
||||||
|
Reference in New Issue
Block a user