From 23d36d8705691b90b4dbc1db595efd7404c33d90 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Tue, 30 Mar 2021 21:50:11 +0200 Subject: [PATCH] add transpilation condition --- de.mmd | 8 +++++++- en.mmd | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/de.mmd b/de.mmd index 701af17..fed0001 100644 --- a/de.mmd +++ b/de.mmd @@ -23,7 +23,13 @@ F --> |Nein| Schlecht F --> |Ja| G([Wurde die Sprache von Microsoft entwickelt?]) G --> |Ja| Schlecht -G --> |Nein| H([Läuft die Sprache nur in einer VM?]) +G --> |Nein| N([Wird die Sprache zu einer anderern transpiliert?]) + +N --> |Ja| O(["Kommen alle Targets der sprache in diesem Test bei #quot;schlecht#quot; an?"]) +N --> |Nein| H([Läuft die Sprache nur in einer VM?]) + +O --> |Ja| Ok +O --> |Nein| SGut H --> |Ja| L([Wird die Sprache für embedded-scripting verwendet?]) H --> |Nein| M([Hat die Sprache einen Garbage Collector?]) diff --git a/en.mmd b/en.mmd index 04ebfa1..9836300 100644 --- a/en.mmd +++ b/en.mmd @@ -23,7 +23,13 @@ F --> |No| Bad F --> |Yes| G([Has the language been developed by Microsoft?]) G --> |Yes| Bad -G --> |No| H([Does the language only run in a VM?]) +G --> |No| N([Is the language transpiled to another?]) + +N --> |Yes| O(["Do all targets of the langauge arrive at #quot;Bad#quot; in this test?"]) +N --> |No| H([Does the language only run in a VM?]) + +O --> |Yes| Ok +O --> |No| VGood H --> |Yes| L([Is the language used for embedded scripting?]) H --> |No| M([Does the language have a Garbage Collector?])