首页 > 其他 > 详细

[AST Babel Plugin] Transform code, add line:column number for console log

时间:2020-02-20 23:24:17      阅读:73      评论:0      收藏:0      [点我收藏+]

For example we have current code:

function add(a, b) {
    console.log(a, b)
      return a + b
}

function subtract(a, b) {
    console.log(a, b)
      return a - b
}

add(1, 2)
subtract(2, 1)
console.log(sup dawg)

 

We want to transform the code to:

function add(a, b) {
    console.log("2:4", a, b)
      return a + b
}

function subtract(a, b) {
    console.log("7:4", a, b)
      return a - b
}

add(1, 2)
subtract(2, 1)
console.log("13:0", sup dawg)

Added line and colum number in front of console log arguements

 

Using the utilites functions:

function looksLike(a, b) {
  return (
    a &&
    b &&
    Object.keys(b).every(bKey => {
      const bVal = b[bKey]
      const aVal = a[bKey]
      if (typeof bVal === function) {
        return bVal(aVal)
      }
      return isPrimitive(bVal) ? bVal === aVal : looksLike(aVal, bVal)
    })
  )
}

function isPrimitive(val) {
  return val == null || /^[sbn]/.test(typeof val)
}

 

Babel plugin code:

export default function (babel) {
  const { types: t } = babel;
 
  return {
    name: "ast-transform", // not required
    visitor: {
      CallExpression(path) {
          if (!looksLike(path.node, {
            callee: {
              type: MemberExpression,
              object: {
                  name: console
              },
              property: {
                  name: log
              }
            }
        })) {
          return
        }
        console.log(path.node.loc)
        // insert string into console.log(‘instread here‘, a,b)
        const {line, column} = path.node.loc.start;
        path.node.arguments.unshift(t.stringLiteral(`${line}:${column}`))
      }
    }
  };
}

 

[AST Babel Plugin] Transform code, add line:column number for console log

原文:https://www.cnblogs.com/Answer1215/p/12337243.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!