mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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:
parent
3a47c55a2e
commit
440412d682
2 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
]
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -91,6 +91,8 @@ const extensions = [
|
|||
"erb",
|
||||
// Visual Basic .NET
|
||||
"vb",
|
||||
// AL Language
|
||||
"al",
|
||||
].map((e) => `.${e}`)
|
||||
|
||||
export { extensions }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue