このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
isprogram
/
tree-sitter-c
ミラー元
https://github.com/tree-sitter/tree-sitter-c
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プロジェクト
0
リリース
79
Wiki
アクティビティ
ソースを参照
Add signed keyword
Fixes
#10
pull/16/merge
Max Brunsfeld
7年前
親
2af332790e
コミット
176fd5f077
4個のファイルの変更
、
623行の追加
、
280行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-1
corpus/types.txt
+1
-0
grammar.js
+4
-0
src/grammar.json
+617
-279
src/parser.c
+ 1
- 1
corpus/types.txt
ファイルの表示
@ -46,7 +46,7 @@ Type modifiers
void f(unsigned);
void f(unsigned int);
void f(
un
signed long int);
void f(signed long int);
void f(unsigned v1);
void f(unsigned long v2);
+ 1
- 0
grammar.js
ファイルの表示
@ -282,6 +282,7 @@ module.exports = grammar({
sized_type_specifier
:
$
=>
seq
(
repeat1
(
choice
(
'signed'
,
'unsigned'
,
'long'
,
'short'
+ 4
- 0
src/grammar.json
ファイルの表示
@ -1891,6 +1891,10 @@
"content"
:
{
"type"
:
"CHOICE"
,
"members"
:
[
{
"type"
:
"STRING"
,
"value"
:
"signed"
}
,
{
"type"
:
"STRING"
,
"value"
:
"unsigned"
+ 617
- 279
src/parser.c
ファイル差分が大きすぎるため省略します
ファイルの表示
書き込み
プレビュー
読み込み中…
キャンセル
保存