本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
isprogram
/
tree-sitter-c
镜像来自
https://github.com/tree-sitter/tree-sitter-c
關注
1
收藏
0
複製
0
程式碼
問題
0
Projects
0
版本發佈
79
Wiki
活動
瀏覽代碼
Handle line continuations with CRLF endings
pull/38/head
Max Brunsfeld
6 年之前
父節點
d2ebd7f6c0
當前提交
b6ff8fbdaf
共有
3 個檔案被更改
,包括
2438 行新增
和
2380 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
grammar.js
+1
-1
src/grammar.json
+2436
-2378
src/parser.c
+ 1
- 1
grammar.js
查看文件
@ -25,7 +25,7 @@ module.exports = grammar({
name
:
'c'
,
extras
:
$
=>
[
/\s|\\\n/
,
/\s|\\\
r?\
n/
,
$
.
comment
,
]
,
+ 1
- 1
src/grammar.json
查看文件
@ -6096,7 +6096,7 @@
"extras"
:
[
{
"type"
:
"PATTERN"
,
"value"
:
"\\s|\\\\\\n"
"value"
:
"\\s|\\\\\\
r?\\
n"
}
,
{
"type"
:
"SYMBOL"
,
+ 2436
- 2378
src/parser.c
文件差異過大導致無法顯示
查看文件
Write
Preview
Loading…
取消
儲存