提交 e9162339 编写于 作者: fxy060608's avatar fxy060608 提交者: qiang

fix(uvue): 修复 android 平台 uvue 文件中 class 补充 sourcemap 时可能错位

上级 9855c71a
...@@ -117,10 +117,10 @@ export function rewriteSourceMap( ...@@ -117,10 +117,10 @@ export function rewriteSourceMap(
} else if (node.type === 'ClassDeclaration') { } else if (node.type === 'ClassDeclaration') {
if (node.implements && node.implements.length > 0) { if (node.implements && node.implements.length > 0) {
// 已有接口 // 已有接口
s.appendRight(startOffset + node.body.start! - 1, `, IUTSSourceMap`) s.appendRight(startOffset + node.body.start!, `, IUTSSourceMap`)
} else { } else {
s.appendRight( s.appendRight(
startOffset + node.body.start! - 1, startOffset + node.body.start!,
` implements IUTSSourceMap` ` implements IUTSSourceMap`
) )
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册