1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 06:41:45 +03:00
semantic/test/corpus/generated/ruby.json

66 lines
2.4 KiB
JSON
Raw Normal View History

2016-10-19 20:33:21 +03:00
[
{
"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"
},
2016-10-21 23:55:00 +03:00
{
"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"
},
{
2016-10-21 23:55:00 +03:00
"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"
2016-10-22 00:41:04 +03:00
},
{
"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"
2016-10-22 01:52:40 +03:00
},
{
"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"
2016-10-19 20:33:21 +03:00
}
]
}
]