Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
isprogram
/
tree-sitter-c
mirror da
https://github.com/tree-sitter/tree-sitter-c
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Projects
0
Rilasci
79
Wiki
Attività
Sfoglia il codice sorgente
Handle line continuations with CRLF endings
pull/38/head
Max Brunsfeld
6 anni fa
parent
d2ebd7f6c0
commit
b6ff8fbdaf
3 ha cambiato i file
con
2438 aggiunte
e
2380 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-1
grammar.js
+1
-1
src/grammar.json
+2436
-2378
src/parser.c
+ 1
- 1
grammar.js
Vedi File
@ -25,7 +25,7 @@ module.exports = grammar({
name
:
'c'
,
extras
:
$
=>
[
/\s|\\\n/
,
/\s|\\\
r?\
n/
,
$
.
comment
,
]
,
+ 1
- 1
src/grammar.json
Vedi File
@ -6096,7 +6096,7 @@
"extras"
:
[
{
"type"
:
"PATTERN"
,
"value"
:
"\\s|\\\\\\n"
"value"
:
"\\s|\\\\\\
r?\\
n"
}
,
{
"type"
:
"SYMBOL"
,
+ 2436
- 2378
src/parser.c
File diff soppresso perché troppo grande
Vedi File
Scrivi
Anteprima
Caricamento…
Annulla
Salva