https://github.com/olekscode/pharocodetokenizer
A tool for tokenizing Pharo source code by visiting the leaves of AST
https://github.com/olekscode/pharocodetokenizer
Last synced: 3 months ago
JSON representation
A tool for tokenizing Pharo source code by visiting the leaves of AST
- Host: GitHub
- URL: https://github.com/olekscode/pharocodetokenizer
- Owner: olekscode
- License: mit
- Created: 2019-09-11T11:13:56.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-17T11:12:38.000Z (almost 6 years ago)
- Last Synced: 2025-02-11T11:41:28.997Z (5 months ago)
- Language: Smalltalk
- Size: 104 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pharo Code Tokenizer
[](https://travis-ci.org/olekscode/PharoCodeTokenizer)
[](https://ci.appveyor.com/project/olekscode/pharocodetokenizer)
[](https://coveralls.io/github/olekscode/PharoCodeTokenizer?branch=master)
[](https://raw.githubusercontent.com/olekscode/PharoCodeTokenizer/master/LICENSE)
[](https://pharo.org/download)
[](https://pharo.org/download)
[](https://pharo.org/download)A tool for tokenizing Pharo source code by visiting the leaves of AST
## Installation
To install `PharoCodeTokenizer`, go to the Playground (`Ctrl+OW`) in your Pharo image and execute the following Metacello script (select it and press Do-it button or `Ctrl+D`):```smalltalk
Metacello new
baseline: 'PharoCodeTokenizer';
repository: 'github://olekscode/PharoCodeTokenizer/src';
load.
```