diff --git a/data/fixtures/scopes/csharp/comment.block.scope b/data/fixtures/scopes/csharp/comment.block.scope index 90f30164f9..5ac1a61ca4 100644 --- a/data/fixtures/scopes/csharp/comment.block.scope +++ b/data/fixtures/scopes/csharp/comment.block.scope @@ -1,4 +1,4 @@ -/* +/* Hello world */ @@ -7,8 +7,8 @@ [Content] = [Removal] = [Domain] = 0:0-3:2 - >--- -0| /* + >-- +0| /* 1| Hello 2| world 3| */ diff --git a/data/fixtures/scopes/csharp/string.singleLine.scope b/data/fixtures/scopes/csharp/string.singleLine.scope index 60e24228a6..543db9f482 100644 --- a/data/fixtures/scopes/csharp/string.singleLine.scope +++ b/data/fixtures/scopes/csharp/string.singleLine.scope @@ -1,10 +1,10 @@ -"hello world"; +"hello world"; --- [Content] = [Removal] = [Domain] = 0:0-0:13 >-------------< -0| "hello world"; +0| "hello world"; [Insertion delimiter] = " " diff --git a/data/fixtures/scopes/dart/className.scope b/data/fixtures/scopes/dart/className.scope index 587c9e2102..211086562c 100644 --- a/data/fixtures/scopes/dart/className.scope +++ b/data/fixtures/scopes/dart/className.scope @@ -1,29 +1,24 @@ -class MyClass { - -} +class Foo {} --- -[Content] = 0:6-0:13 - >-------< -0| class MyClass { +[Content] = 0:6-0:9 + >---< +0| class Foo {} -[Removal] = 0:6-0:14 - >--------< -0| class MyClass { +[Removal] = 0:6-0:10 + >----< +0| class Foo {} [Leading delimiter] = 0:5-0:6 >-< -0| class MyClass { +0| class Foo {} -[Trailing delimiter] = 0:13-0:14 - >-< -0| class MyClass { +[Trailing delimiter] = 0:9-0:10 + >-< +0| class Foo {} -[Domain] = 0:0-2:1 - >--------------- -0| class MyClass { -1| -2| } - -< +[Domain] = 0:0-0:12 + >------------< +0| class Foo {} [Insertion delimiter] = " " diff --git a/data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope b/data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope index fcc4c645e5..f37741c349 100644 --- a/data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope +++ b/data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope @@ -1,4 +1,4 @@ -/** +/** * hello * world */ @@ -7,8 +7,8 @@ [Content] = [Removal] = [Domain] = 0:0-3:2 - >---- -0| /** + >--- +0| /** 1| * hello 2| * world 3| */ diff --git a/data/fixtures/scopes/python/condition/condition.if.scope b/data/fixtures/scopes/python/condition/condition.if.scope index cc5072c278..642327d47a 100644 --- a/data/fixtures/scopes/python/condition/condition.if.scope +++ b/data/fixtures/scopes/python/condition/condition.if.scope @@ -1,5 +1,5 @@ if True: pass -elif False: pass +elif False: pass else: pass --- @@ -18,7 +18,7 @@ else: pass [#1 Domain] = 0:0-2:10 >------------- 0| if True: pass -1| elif False: pass +1| elif False: pass 2| else: pass ----------< @@ -27,18 +27,18 @@ else: pass [#2 Content] = 1:5-1:10 >-----< -1| elif False: pass +1| elif False: pass [#2 Removal] = 1:4-1:10 >------< -1| elif False: pass +1| elif False: pass [#2 Leading delimiter] = 1:4-1:5 >-< -1| elif False: pass +1| elif False: pass [#2 Domain] = 1:0-1:16 >----------------< -1| elif False: pass +1| elif False: pass [#2 Insertion delimiter] = " " diff --git a/data/fixtures/scopes/rust/ifStatement.scope b/data/fixtures/scopes/rust/ifStatement.scope index 01be0347d6..dd1503659e 100644 --- a/data/fixtures/scopes/rust/ifStatement.scope +++ b/data/fixtures/scopes/rust/ifStatement.scope @@ -1,12 +1,12 @@ -if true {} +if true {} else {}; --- [Content] = [Removal] = [Domain] = 0:0-1:7 - >----------- -0| if true {} + >---------- +0| if true {} 1| else {}; -------<