atom / symbols-view

Jump to symbols in Atom
MIT License
164 stars 114 forks source link

Support for Flow annotated JS function definition inside objects #142

Open chenglou opened 8 years ago

chenglou commented 8 years ago

Declarations of the following format:

var a = {
  b(): void {
    // bla
  }
};

I understand that this is low-pri, since the type definition can be e.g. b(): {[key: string]: number} {..., b(): Array<(key: string) => boolean>