mirror of
https://github.com/Ed94/LangStudies.git
synced 2025-08-14 07:57:45 -07:00
EoI : Lectures 1-5 complete
This commit is contained in:
17
App/RegM/Readme.md
Normal file
17
App/RegM/Readme.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# Automata: RegEx Machines
|
||||
|
||||

|
||||
|
||||
## Lectures
|
||||
|
||||
Contains notes taken from the lecture vods.
|
||||
|
||||
## Scripts
|
||||
|
||||
Contains some implementation from the lectures but I have no completed it yet...
|
||||
|
||||
I made my own context-free version of the language callled "SRegEx"
|
||||
This is mainly what I wanted at the end of the day...
|
||||
|
||||
Currently the script only translates to RegEx,
|
||||
I still need to make RegEx to SRegEx
|
@@ -1,7 +1,7 @@
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://Assets/Branding/RegM_Class_cover_small.png" type="Texture" id=1]
|
||||
[ext_resource path="res://Assets/Styles/EditorTheme.tres" type="Theme" id=2]
|
||||
[ext_resource path="res://Assets/Styles/Purple.EditorTheme.tres" type="Theme" id=2]
|
||||
[ext_resource path="res://RegM/Scripts/RegM_Viewer.gd" type="Script" id=3]
|
||||
|
||||
[node name="RegM_Panel" type="Panel"]
|
||||
|
@@ -257,7 +257,7 @@ class ASTNode:
|
||||
}
|
||||
return result
|
||||
|
||||
const NodeType = \
|
||||
const NodeType : Dictionary = \
|
||||
{
|
||||
expression = "Expression",
|
||||
|
||||
@@ -1074,4 +1074,3 @@ func transpile_OpNot(node : ASTNode):
|
||||
result += transpile_Set(entry, true)
|
||||
|
||||
return result
|
||||
|
||||
|
Reference in New Issue
Block a user