Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/llafuente/language-spec
https://github.com/llafuente/language-spec
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/llafuente/language-spec
- Owner: llafuente
- Created: 2022-11-18T13:10:16.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-23T21:14:45.000Z (2 months ago)
- Last Synced: 2024-10-24T09:28:50.516Z (2 months ago)
- Language: JavaScript
- Size: 365 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Language
# Specification:
## General
[Scope](spec/general/scope.md)
[Normative references](spec/general/normative-references.md)
[Glossary](spec/general/glossary.md)
[Conformance](spec/general/conformance.md)
## Compiler
[Compilation phases](spec/compiler/compilation-phases.md)
* Lexical Analysis
* Syntax Analysis
* Semantic Analysis
* Code generation[The source file](spec/compiler/the-source-file.md)
* Structure (order)
* Character sets
* Trigraph sequences
* Multibyte characters[Project structure](spec/compiler/project-structure.md)
[Configuration](spec/compiler/compiler-configuration.md)
* `#get`
* `#set`
* `#require`## Language
[Keywords](spec/keywords.md)
[Type system](spec/language/type-system.md)
* Primitives
* [Numeric arithmetic](spec/language/types/numeric-arithmetic.md)
* [Pointers](spec/language/types/pointers.md)
* [Structured](spec/language/types/structured.md)
* [Enumerated](spec/language/types/enumerated.md)
* [Interface](spec/language/types/interface.md)* Extended
* [Array](spec/language/types/array.md)
* [Strings](spec/language/types/strings.md)[Identifiers](spec/language/identifiers.md)
[Literals](spec/language/literals.md)
[Variables](spec/language/variables.md)
[Functions](spec/language/functions.md)
[Statements and blocks](spec/language/statements-and-blocks.md)
[Control flow](spec/language/control-flow.md)
[Expressions](spec/language/expressions.md)
[Introspection](spec/language/introspection.md)
[Preprocessor and metaprogramming](spec/preprocessor-and-metaprogramming.md)
[Memory management](spec/memory-management.md)
---
To build a toy compiler you can read:
* [Compilation process details](compilation.md)
* [Minimal code generator](minimal-code-generation-set.md)Those documents define the compilation process and minimal code generation needed.