| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import type { Node as SyntaxNode } from 'web-tree-sitter';
- import { getNodeText } from '../tree-sitter-helpers';
- import type { LanguageExtractor } from '../tree-sitter-types';
- export const csharpExtractor: LanguageExtractor = {
- functionTypes: [],
- classTypes: ['class_declaration'],
- methodTypes: ['method_declaration', 'constructor_declaration'],
- interfaceTypes: ['interface_declaration'],
- structTypes: ['struct_declaration'],
- enumTypes: ['enum_declaration'],
- enumMemberTypes: ['enum_member_declaration'],
- typeAliasTypes: [],
- importTypes: ['using_directive'],
- callTypes: ['invocation_expression'],
- variableTypes: ['local_declaration_statement', 'field_declaration'],
- nameField: 'name',
- bodyField: 'body',
- paramsField: 'parameter_list',
- getVisibility: (node) => {
- for (let i = 0; i < node.childCount; i++) {
- const child = node.child(i);
- if (child?.type === 'modifier') {
- const text = child.text;
- if (text === 'public') return 'public';
- if (text === 'private') return 'private';
- if (text === 'protected') return 'protected';
- if (text === 'internal') return 'internal';
- }
- }
- return 'private'; // C# defaults to private
- },
- isStatic: (node) => {
- for (let i = 0; i < node.childCount; i++) {
- const child = node.child(i);
- if (child?.type === 'modifier' && child.text === 'static') {
- return true;
- }
- }
- return false;
- },
- isAsync: (node) => {
- for (let i = 0; i < node.childCount; i++) {
- const child = node.child(i);
- if (child?.type === 'modifier' && child.text === 'async') {
- return true;
- }
- }
- return false;
- },
- extractImport: (node, source) => {
- const importText = source.substring(node.startIndex, node.endIndex).trim();
- // C# using directives: using System, using System.Collections.Generic, using static X, using Alias = X
- const qualifiedName = node.namedChildren.find((c: SyntaxNode) => c.type === 'qualified_name');
- if (qualifiedName) {
- return { moduleName: getNodeText(qualifiedName, source), signature: importText };
- }
- // Simple namespace like "using System;" - get the first identifier
- const identifier = node.namedChildren.find((c: SyntaxNode) => c.type === 'identifier');
- if (identifier) {
- return { moduleName: getNodeText(identifier, source), signature: importText };
- }
- return null;
- },
- };
|