Masatake YAMATO

Results 140 issues of Masatake YAMATO

``` $ ./ctags --options=./Units/option-regex-attaching-role.r/extending-existing-parser.d/args.ctags ./Units/option-regex-attaching-role.r/extending-existing-parser.d/input.scm ctags: Warning: given end line (3) for the tag () in the file (./Units/option-regex-attaching-role.r/extending-existing-parser.d/input.scm) is smaller than its start line: 4 ``` The args.ctags is...

```sql CREATE FUNCTION isnlt(ean13, ean13) RETURNS boolean AS 'int8lt' LANGUAGE 'internal' IMMUTABLE STRICT PARALLEL SAFE; ``` This change extracts `int8lt` as a function in the C language.

g.js ``` function g() { return ({ props: { key: "key" }, columns: [ { title: "sir" }, ], }); } ``` output ``` ~/bin/ctags --options=NONE --sort=no -o - /tmp/g.js...

h.js: ``` const PackageList = ({packages}) => packages ? 1 : null; ``` output: ``` $ ~/bin/ctags --options=NONE --fields=+S --sort=no -o - /tmp/h.js ctags: Notice: No options will be read...

An item not solved in #3435. If an object literal is specified as a default value in object restructuring, the parser may fail to extract the variable (or constant): ```...

``` [yamato@dev64 ts-class-member-with-props.d]$ cat input2.ts cat input2.ts class C { a b } [yamato@dev64 ts-class-member-with-props.d]$ tsc input2.ts tsc input2.ts [yamato@dev64 ts-class-member-with-props.d]$ ~/bin/ctags -o - input2.ts ~/bin/ctags -o - input2.ts C...

For input.c: ``` #ifdef X int v; #else float v; #endif ``` What I expect: ``` v foo.c /^int v;$/;" kind:variable cppcontext:#ifdef X v foo.c /^float v;$/;" kind:variable cppcontext:#else X...