hataraku
Version:
An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.
30 lines (28 loc) • 721 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
- function declarations (with associated comments)
- method declarations (with associated comments)
- type specifications
*/
exports.default = `
(
(comment)*
.
(function_declaration
name: (identifier) .definition.function) .function
(#strip! "^//\\s*")
(#set-adjacent! .function)
)
(
(comment)*
.
(method_declaration
name: (field_identifier) .definition.method) .method
(#strip! "^//\\s*")
(#set-adjacent! .method)
)
(type_spec
name: (type_identifier) .definition.type) .type
`;
//# sourceMappingURL=go.js.map