-
Notifications
You must be signed in to change notification settings - Fork 7
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
Merge Development Branch into Main with Numerous Implementations and Enhancements #37
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
…anguage - Established base directory layout for Phase 1 development - Created core directories: lexer, parser, interpreter, tests, and docs - Added `tokens.go` within lexer for token declarations - Prepared placeholders for essential components: - Lexer: Responsible for tokenizing input - Parser: For syntax analysis and AST generation - Interpreter: For code execution and evaluation - Tests: To validate individual components and ensure stability - Docs: To provide detailed specifications, usage guides, and future updates
…rds, and literals - Introduced logical operators (&&, ||, !) - Added bitwise operators (&, |, ^, ~, <<, >>) - Defined comparison operators with CMP_ prefix for clarity - Included assignment and increment/decrement operators - Added punctuation symbols (parentheses, braces, brackets, comma, semicolon, colon) - Added common language keywords (if, else, for, while, return, func, var, const, true, false) - Introduced literals for int, float, string, and bool types
Feat(Workflow): Implement github actions workflows go.yml
… the syntax of the language.
…ountered in the source code from other identifier values.
…john Define Tokens To Help In Forming The Language Syntax
- Added caching for Go modules to speed up builds. - Implemented coverage report upload as an artifact for later review. - Improved error handling and step descriptions for clarity. - Configured fetch-depth for the checkout action to avoid shallow clone issues.
Update Workflows
…angci.yml - Removed 'golint' from the enabled linters list due to deprecation. - Added 'revive' as the replacement linter for better linting and active support. - Kept other linters (govet, errcheck, goconst, gofmt, staticcheck) unchanged.
…e CamelCase (revive)
Refactor(tokken): Formart code with gofmt -s -w -l .
…fine function New that will create a new instance of a lexer struct.
…e value at the current position.
… encounters double quotes or a null character and returns the substring between the starting and the current position.
…ing a token type and the character.
…form an identifier starting from the current position and returns the identifier as a string.
… input and returns it as a string.
…, newlines and carriage returns.
… input without advancing the readPosition.
…e/docs docs(README): Create Head file README documentation
…e/docs refactor(docs): Remove README and license files from the root and mov…
…e/docs refactor(docs): Move README and license files from the root to docs dir
…e/docs Feature/docs
…e/docs docs(README): Update README docs
…e/docs docs(intro): Add kisumu specification introduction
…e/docs docs(arch): Add Kisumu Language Architecture Document
…e/docs docs(feat): Implement kisumu features document
…e/docs Update docs
…e/docs docs(README): Update paths in docs
…e/docs docs(DS): Add data strucure overview of kisumu lang
This looks good to me. |
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.
This PR merges the latest changes from the development branch into the main branch, incorporating several key implementations and enhancements to the Kisumu programming language. Notable updates include:
This PR is co-authored with:
Additionally, this PR will close #7