-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
89 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
fetch all foo | ||
= | ||
FETCH FORWARD ALL FROM foo | ||
|
||
fetch next in foo | ||
= | ||
FETCH NEXT FROM foo | ||
|
||
fetch forward 1 from foo | ||
= | ||
FETCH NEXT FROM foo | ||
|
||
fetch 1 from foo | ||
= | ||
FETCH NEXT FROM foo | ||
|
||
fetch backward 1 from foo | ||
= | ||
FETCH PRIOR FROM foo | ||
|
||
fetch prior in foo | ||
= | ||
FETCH PRIOR FROM foo | ||
|
||
fetch absolute 1 foo | ||
= | ||
FETCH FIRST FROM foo | ||
|
||
fetch absolute -1 foo | ||
= | ||
FETCH LAST FROM foo | ||
|
||
fetch absolute 42 foo | ||
= | ||
FETCH ABSOLUTE 42 FROM foo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
move all foo | ||
= | ||
MOVE FORWARD ALL IN foo | ||
|
||
move next in foo | ||
= | ||
MOVE NEXT IN foo | ||
|
||
move forward 1 from foo | ||
= | ||
MOVE NEXT IN foo | ||
|
||
move 1 from foo | ||
= | ||
MOVE NEXT IN foo | ||
|
||
move backward 1 from foo | ||
= | ||
MOVE PRIOR IN foo | ||
|
||
move prior in foo | ||
= | ||
MOVE PRIOR IN foo | ||
|
||
move absolute 1 foo | ||
= | ||
MOVE FIRST IN foo | ||
|
||
move absolute -1 foo | ||
= | ||
MOVE LAST IN foo | ||
|
||
move absolute 42 foo | ||
= | ||
MOVE ABSOLUTE 42 IN foo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters