diff --git a/hello.js b/hello.js index 371fdfb..62def1c 100644 --- a/hello.js +++ b/hello.js @@ -1 +1,12 @@ console.log('hello') + +class MyClass { + myField = 1; + constructor() { + console.log('I need more syntax highligthing in vim'); + } + + mungeData(data) { + return this.myField + data; + } +}