feat: add support for .al (AL Language) file extension with fallback chunking

- Added "al" to the extensions array in tree-sitter index
- Added ".al" to fallbackExtensions for length-based chunking
- Enables AL Language (Dynamics 365 Business Central) file support

Fixes #8596
This commit is contained in:
Roo Code 2025-10-10 12:53:33 +00:00
parent 3a47c55a2e
commit 440412d682
2 changed files with 3 additions and 0 deletions

View file

@ -22,6 +22,7 @@ export const fallbackExtensions = [
".vb", // Visual Basic .NET - no dedicated WASM parser
".scala", // Scala - uses fallback chunking instead of Lua query workaround
".swift", // Swift - uses fallback chunking due to parser instability
".al", // AL Language (Dynamics 365 Business Central) - no dedicated WASM parser
]
/**

View file

@ -91,6 +91,8 @@ const extensions = [
"erb",
// Visual Basic .NET
"vb",
// AL Language
"al",
].map((e) => `.${e}`)
export { extensions }