-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add several verbs of priority 1
#154
Closed
Closed
Conversation
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
Lotes
added a commit
that referenced
this pull request
Oct 15, 2024
* enh: show message box with error when something goes wrong in the initialization process. * chore: roll version * fix: #129 * Remove dead code * Fix PRINT standalone (#147 partially solved) * Update VERBs table * Add Background verb * Add DELETE verb * Complete DIM verb * Add test for FOR... NEXT * Add a validation for interface methods to have no body * Add LOCK and UNLOCK verbs * Add STOP verb * Add START verb * Add SQLROLLBACK verb * Add SQLCOMMIT verb * Add RESET and RETRY verbs * Add ON ... GOSUB verb * Add PREFIX verb * Add REMOVE verb * Update VERBs list * Add tests for INPUT verb * Add CHANOPT verb * Add CLEARP verb * Add CLIPCLEAR verb * Add CLIPTOFILE, CLIPCLEAR, CLIPLOCK and CLIPUNLOCK verbs * Add DENUM verb * Add check for validations * Fix single test * Add ENDTRACE verb * Add FILEOPT and FLOATINGPOINT verbs * Add FULLTEXT verb * Add INDEXED verb * Add LCHECKIN verb * Add RESCLOSE and RESTORE verbs * Add SAVE verb * Add SAVEP verb * Add SETDAY and SETTERM verbs * Add SETTIME verb * Add SETTRACE verbs * Add SORT verb * Try to add TABLE verb, but instead will avoid it temporarily * Add UPDATELIC verb * Add XCALL verb * Fix some tests * Quick save * Fix last bugs from prio 1 branch --------- Co-authored-by: Stephan Wald <[email protected]> Co-authored-by: Stephan Wald <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
The only missing verbs of priority 1 are
FILE
,INPUTN
andINPUTE
. I made two issues to ask for missing information: #152 and #153 .The only new priority 2 verb in this PR is
CHANOPT
.Several entries in the
VERBs.md
table were updated according to the state in the parser tests (INTERFACE
,INTERFACEEND
,INPUT
,FOR
...NEXT
...).Implemented
Following priority 1 verbs were implemented:
BACKGROUND
DELETE
DIM
can have anERR=
line reference nowLOCK
andUNLOCK
ON
...GOSUB
/GOTO
PREFIX
PRINT
can now be used standalone without parametersREMOVE
SQLCOMMIT
SQLROLLBACK
START
STOP
Following priority 2 verbs were implemented:
CHANOPT
Open issues
When SQLEXEC is used without parameters, the next verb in the next line is interpreted as an expression.