Ace.Tern icon indicating copy to clipboard operation
Ace.Tern copied to clipboard

Class objects methods and variables not being found

Open pixelpad-io opened this issue 4 years ago • 0 comments

class Turtle{
  constructor(){
    this.legs = 4;
    this.shell = true;
  }
  speak(w){
     console.log(w)
  }
}
player1= new Turtle();

Typing in "player1." I expect it to find the variables / methods of player1, but it only pulls up ace's default list of snippets and local word list.

pixelpad-io avatar Mar 31 '20 11:03 pixelpad-io