{"version":3,"sources":["ast/node/statement/line.ts"],"names":["typed","ASTNodeComment","ASTNodeStatement","ASTNodeStatementLine","decorate","constructor","comment","copy","r"],"mappings":";;AAAA,SAAQA,KAAR,QAAoB,oBAApB;AACA,SAAQC,cAAR,QAA6B,gBAA7B;AAEA,SAAQC,gBAAR,QAA+B,aAA/B;AAEA;AACA;AACA;;AAEA,WAAaC,oBAAb,WADCH,KAAK,CAACI,QAAN,CAAe,sBAAf,CACD,gBADA,MACaD,oBADb,SAC0CD,gBAD1C,CAC2D;AAC1D;AACD;AACA;AAGCG,EAAAA,WAAW,GAAG;AACb;AADa,SAFPC,OAEO,GAFG,IAAIL,cAAJ,EAEH;AAEb;AAED;AACD;AACA;AACA;AACA;;;AACQM,EAAAA,IAAI,GAAG;AACb,UAAMC,CAAC,GAAG,MAAMD,IAAN,EAAV;AACAC,IAAAA,CAAC,CAACF,OAAF,GAAY,KAAKA,OAAL,CAAaC,IAAb,EAAZ;AACA,WAAOC,CAAP;AACA;;AAnByD,CAA3D","sourcesContent":["import {typed} from '../../../typed';\nimport {ASTNodeComment} from '../comment';\n\nimport {ASTNodeStatement} from './class';\n\n/**\n * ASTNodeStatementLine constructor.\n */\n@typed.decorate('ASTNodeStatementLine')\nexport class ASTNodeStatementLine extends ASTNodeStatement {\n\t/**\n\t * Line comment.\n\t */\n\tpublic comment = new ASTNodeComment();\n\n\tconstructor() {\n\t\tsuper();\n\t}\n\n\t/**\n\t * Copy instance.\n\t *\n\t * @returns Copied instance.\n\t */\n\tpublic copy() {\n\t\tconst r = super.copy();\n\t\tr.comment = this.comment.copy();\n\t\treturn r;\n\t}\n}\n"],"file":"line.mjs","sourceRoot":"../../../../src"}