File size: 460 Bytes
d7607a1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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',
    #'tree-sitter-cpp'
  ]
)