Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jecisc/symbolresolver
A parsing helper to manage symbol resolution by handling scope resolution and finding the right entity from symbols in parsers
https://github.com/jecisc/symbolresolver
parsing pharo smalltalk symbol-resolution
Last synced: 29 days ago
JSON representation
A parsing helper to manage symbol resolution by handling scope resolution and finding the right entity from symbols in parsers
- Host: GitHub
- URL: https://github.com/jecisc/symbolresolver
- Owner: jecisc
- License: other
- Created: 2024-09-20T15:30:13.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-16T10:46:43.000Z (about 1 month ago)
- Last Synced: 2024-10-16T18:58:03.628Z (30 days ago)
- Topics: parsing, pharo, smalltalk, symbol-resolution
- Language: Smalltalk
- Homepage:
- Size: 307 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# SymbolResolver
A parsing helper to manage symbol resolution by handling scope resolution and finding the right entity from symbols in parsers- [SymbolResolver](#symbolresolver)
- [Installation](#installation)
- [Documentation](#documentation)
- [Version management](#version-management)
- [Smalltalk versions compatibility](#smalltalk-versions-compatibility)
- [Contact](#contact)## Installation
To install SymbolResolver on your Pharo image, execute the following script:
```Smalltalk
Metacello new
githubUser: 'jecisc' project: 'SymbolResolver' commitish: 'main' path: 'src';
baseline: 'SymbolResolver';
load
```To add SymbolResolver to your baseline:
```Smalltalk
spec
baseline: 'SymbolResolver'
with: [ spec repository: 'github://jecisc/SymbolResolver:main/src' ]
```Note you can replace the #main by another branch such as #development or a tag such as #v1.0.0, #v1.? or #v1.2.? .
## Documentation
* [User documentation](resources/docs/UserDocumentation.md)
* [Developer documentation](resources/docs/DeveloperDocumentation.md)## Version management
This project use semantic versioning to define the releases. This means that each stable release of the project will be assigned a version number of the form `vX.Y.Z`.
- **X** defines the major version number
- **Y** defines the minor version number
- **Z** defines the patch version numberWhen a release contains only bug fixes, the patch number increases. When the release contains new features that are backward compatible, the minor version increases. When the release contains breaking changes, the major version increases.
Thus, it should be safe to depend on a fixed major version and moving minor version of this project.
## Smalltalk versions compatibility
| Version | Compatible Pharo versions |
|------------- |------------------------------|
| 1.x.x | Pharo 70, 80, 90, 10, 11, 12, 13 |## Contact
If you have any questions or problems do not hesitate to open an issue or contact cyril (a) ferlicot.fr