Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using graspjs to instrument functions #126

Open
retorquere opened this issue Jul 19, 2018 · 0 comments
Open

Using graspjs to instrument functions #126

retorquere opened this issue Jul 19, 2018 · 0 comments

Comments

@retorquere
Copy link

I am looking to add a statement to the top of all functions and methods, such that

function x(a) {
  ...
}
const y = (b) => {
  ...
}
class C {
  z(c) {
    ...
  }
}

comes out something like

function x(a) {
  console.log("x(a)")
  ...
}
const y = (b) => {
  console.log("?(b)")
  ...
}
class C {
  z(c) {
    console.log("z(c)")
    ...
  }
}

is this possible using graspjs?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant