Skip to content
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

Update Types.md #36

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/BestPractices-CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# MontiCore Best Practices - Designing Tools for Command Line Interfaces

[[_TOC_]]


Some DSLs require a tool to enable general accessibility via the command line interface (CLI).
When designing a tool, we recommend some standard guidelines.
Expand Down
2 changes: 1 addition & 1 deletion docs/BestPractices-Errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# MontiCore Best Practices - Understanding Errors, Defining Errors

[[_TOC_]]


Errors happen.
Some happen because of faults in the code (we call that internal errors),
Expand Down
2 changes: 1 addition & 1 deletion docs/BestPractices-Syntax-Design.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# MontiCore Best Practices - Concrete and Abstract Syntax

[[_TOC_]]


[MontiCore](https://www.monticore.de) provides a number of options to design
languages, access and modify the abstract syntax tree, and produce output files.
Expand Down
2 changes: 1 addition & 1 deletion docs/Languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# MontiCore Languages of Level II - an Overview

[[_TOC_]]


[MontiCore](https://www.monticore.de) is a language workbench
with an explicit notion of language components. It uses
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# MontiCore Grammars for Expressions, Literals and Types - an Overview

[[_TOC_]]


[MontiCore](https://www.monticore.de) is a language workbench. It uses an
extended grammar format as primary mechanism to describe DSLs. This format
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ combined with any of the above language components.
This language component allows developers to express function types
like `int -> int` or `(String -> int) -> void`.
Function types are independent from and not interfering with
generic and array types,
generic and array types. Thus
`MCFunctionTypes` can be combined with any of the above language components.

## Further Information
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Documentation of the Symbol Table Infrastructure

[[_TOC_]]


## Conceptual Model of Symbol Tables
* What is a symbol?
Expand Down