mirror of
https://github.com/github/semantic.git
synced 2024-12-23 14:54:16 +03:00
136 lines
5.0 KiB
JSON
136 lines
5.0 KiB
JSON
[
|
|
{
|
|
"repoPath": "test/corpus/repos/ruby",
|
|
"repoUrl": "https://github.com/diff-fixtures/ruby.git",
|
|
"language": "ruby",
|
|
"syntaxes": [
|
|
{
|
|
"syntax": "assignment",
|
|
"repoFilePath": "assignment.rb",
|
|
"insert": "x = 0",
|
|
"replacement": "x = 1",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/assignment.json"
|
|
},
|
|
{
|
|
"syntax": "comment",
|
|
"repoFilePath": "comment.rb",
|
|
"insert": "# This is a comment",
|
|
"replacement": "=begin\nThis is a multiline\ncomment\n=end",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/comment.json"
|
|
},
|
|
{
|
|
"syntax": "number",
|
|
"repoFilePath": "number.rb",
|
|
"insert": "1234\n1_234\n0d1_234\n0xa_bcd_ef0_123_456_789\n0o1234567\n0b1_0\n1.234_5e678_90\n",
|
|
"replacement": "1235\n1_235\n0d1_235\n0xa_bcd_ef0_123_456_788\n0o1234576\n0b1_1\n1.234_5e678_91\n",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/number.json"
|
|
},
|
|
{
|
|
"syntax": "symbol",
|
|
"repoFilePath": "symbol.rb",
|
|
"insert": ":foo\n:'foo'\n:\"foo\"",
|
|
"replacement": ":bar\n:'bar'\n:\"bar\"",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/symbol.json"
|
|
},
|
|
{
|
|
"syntax": "string",
|
|
"repoFilePath": "string.rb",
|
|
"insert": "''\n'foo with \"bar\"'",
|
|
"replacement": "\"\"\n\"bar with 'foo'\"",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/string.json"
|
|
},
|
|
{
|
|
"syntax": "interpolation",
|
|
"repoFilePath": "symbol.rb",
|
|
"insert": ":\"foo #{bar}\"\n\"foo #{bar}\"",
|
|
"replacement": ":\"bar #{foo}\"\n\"bar #{foo}\"",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/interpolation.json"
|
|
},
|
|
{
|
|
"syntax": "delimiter",
|
|
"repoFilePath": "delimiter.rb",
|
|
"insert": "%q=a=\n%q<a<b>c>\n%=a=\n%Q=a=\n%<a<b>c>\n%Q<a<b>c>",
|
|
"replacement": "%q!b!\n%q{d{e}f}\n%!b!\n%Q!b!\n%{d{e}f}\n%Q{d{e}f}",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/delimiter.json"
|
|
},
|
|
{
|
|
"syntax": "math_assignment",
|
|
"repoFilePath": "math_assignment.rb",
|
|
"insert": "x += 1\nx -= 1\nx *= 1\nx /= 1\nx **= 1",
|
|
"replacement": "x+= 2\nx -= 1\nx *= 1\nx /= 1\nx **= 1",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/math_assignment.json"
|
|
},
|
|
{
|
|
"syntax": "conditional_assignment",
|
|
"repoFilePath": "conditional_assignment.rb",
|
|
"insert": "x ||= 5",
|
|
"replacement": "x &&= 7",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/conditional_assignment.json"
|
|
},
|
|
{
|
|
"syntax": "multiple_assignments",
|
|
"repoFilePath": "multiple_assignments.rb",
|
|
"insert": "x, y, z = 10, 20, 30",
|
|
"replacement": "x, y = aVariable, 40",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/multiple_assignments.json"
|
|
},
|
|
{
|
|
"syntax": "pseudo_variables",
|
|
"repoFilePath": "pseudo_variables.rb",
|
|
"insert": "nil\nself\nfalse\ntrue",
|
|
"replacement": "self\nNIL\nTRUE\nFALSE",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/pseudo_variables.json"
|
|
},
|
|
{
|
|
"syntax": "subshell",
|
|
"repoFilePath": "subshell.rb",
|
|
"insert": "`ls -la`",
|
|
"replacement": "`git status`",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/subshell.json"
|
|
},
|
|
{
|
|
"syntax": "hash",
|
|
"repoFilePath": "hash.rb",
|
|
"insert": "{ :key1 => \"value\", :key2 => 1, \"key3\" => false, :\"symbol_key\" => 10 }",
|
|
"replacement": "{ key1: \"changed value\", key2: 2, key3: true }",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/hash.json"
|
|
},
|
|
{
|
|
"syntax": "boolean-operator",
|
|
"repoFilePath": "boolean-operator.rb",
|
|
"insert": "a || b",
|
|
"replacement": "a && b",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/boolean-operator.json"
|
|
},
|
|
{
|
|
"syntax": "relational-operator",
|
|
"repoFilePath": "relational-operator.rb",
|
|
"insert": "x == y\nx != y\nx === y",
|
|
"replacement": "x <=> y\nx =~ y\nx =! y",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/relational-operator.json"
|
|
},
|
|
{
|
|
"syntax": "comparision-operator",
|
|
"repoFilePath": "comparision-operator.rb",
|
|
"insert": "x < y\na > b",
|
|
"replacement": "x <= y\na >= b",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/comparision-operator.json"
|
|
},
|
|
{
|
|
"syntax": "bitwise-operator",
|
|
"repoFilePath": "bitwise-operator.rb",
|
|
"insert": "a | b\na >> b\na ^ b",
|
|
"replacement": "a & b\na << b",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/bitwise-operator.json"
|
|
},
|
|
{
|
|
"syntax": "ternary",
|
|
"repoFilePath": "ternary.rb",
|
|
"insert": "condition ? case1 : case2",
|
|
"replacement": "if condition then case 1 else case2",
|
|
"testCaseFilePath": "test/corpus/diff-summaries/ruby/ternary.json"
|
|
}
|
|
]
|
|
}
|
|
]
|