mirror of
https://github.com/salesforce/CodeT5.git
synced 2024-10-01 06:35:38 -04:00
22 lines
431 B
Python
22 lines
431 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT license.
|
|
|
|
from tree_sitter import Language, Parser
|
|
|
|
Language.build_library(
|
|
# Store the library in the `build` directory
|
|
'my-languages.so',
|
|
|
|
# Include one or more languages
|
|
[
|
|
'tree-sitter-go',
|
|
'tree-sitter-javascript',
|
|
'tree-sitter-python',
|
|
'tree-sitter-php',
|
|
'tree-sitter-java',
|
|
'tree-sitter-ruby',
|
|
'tree-sitter-c-sharp',
|
|
]
|
|
)
|
|
|