batonai-coding-assistant[bot] commited on
Commit
ce480bd
·
unverified ·
1 Parent(s): c501ccb

Add Go language support for syntax highlighting

Browse files

- Extend `get_language_by_extension()` to recognize `.go` files, returning 'go' for Go language.
- Update `CodeParser` class to support Go:
- Add 'go' to `language_extension_map`.
- Modify `_install_parsers()` to clone and build the `tree-sitter-go` repository.
- Include relevant syntax nodes for Go in `_get_node_types_of_interest()`:
- import_declaration => 'Import'
- function_declaration => 'Function'
- Add more as needed.
- Update `_get_nodes_for_comments()` to recognize Go comments.

These changes are necessary to provide syntax highlighting capabilities for Go code in the application, improving usability for developers working with Go files.

Files changed (2) hide show
  1. CodeParser.py +14 -1
  2. app.py +2 -0
CodeParser.py CHANGED
@@ -19,7 +19,8 @@ class CodeParser:
19
  "ts": "typescript",
20
  "tsx": "typescript",
21
  "php": "php",
22
- "rb": "ruby"
 
23
  }
24
  if file_extensions is None:
25
  self.language_names = []
@@ -177,6 +178,15 @@ class CodeParser:
177
  'module': 'Module',
178
  'singleton_class': 'Singleton Class',
179
  'begin': 'Begin Block',
 
 
 
 
 
 
 
 
 
180
  }
181
  }
182
 
@@ -213,6 +223,9 @@ class CodeParser:
213
  },
214
  'rb': {
215
  'comment': 'Comment',
 
 
 
216
  }
217
  }
218
 
 
19
  "ts": "typescript",
20
  "tsx": "typescript",
21
  "php": "php",
22
+ "rb": "ruby",
23
+ "go": "go"
24
  }
25
  if file_extensions is None:
26
  self.language_names = []
 
178
  'module': 'Module',
179
  'singleton_class': 'Singleton Class',
180
  'begin': 'Begin Block',
181
+ },
182
+ 'go': {
183
+ 'import_declaration': 'Import',
184
+ 'function_declaration': 'Function',
185
+ 'method_declaration': 'Method',
186
+ 'type_declaration': 'Type',
187
+ 'struct_type': 'Struct',
188
+ 'interface_type': 'Interface',
189
+ 'package_clause': 'Package'
190
  }
191
  }
192
 
 
223
  },
224
  'rb': {
225
  'comment': 'Comment',
226
+ },
227
+ 'go': {
228
+ 'comment': 'Comment',
229
  }
230
  }
231
 
app.py CHANGED
@@ -56,6 +56,8 @@ def get_language_by_extension(file_extension):
56
  return 'ruby'
57
  elif file_extension == 'php':
58
  return 'php'
 
 
59
  else:
60
  return None
61
 
 
56
  return 'ruby'
57
  elif file_extension == 'php':
58
  return 'php'
59
+ elif file_extension == 'go':
60
+ return 'go'
61
  else:
62
  return None
63