From 53502dbad67ebec41e4b790ff12bdae608e39565 Mon Sep 17 00:00:00 2001 From: Andy <4ndygeiss@gmail.com> Date: Mon, 19 Jul 2021 13:05:56 +0200 Subject: [PATCH] Update README.md mapping link fixed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5098543..ff08426 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Now I am able to use a fully automated testing approach instead of doing it 100% **Important**: The Transpiler only supports a small subset of the [Golang Language Specification](https://golang.org/ref/spec). -Look at the [mapping](https://github.com/andygeiss/esp32-transpiler/blob/master/impl/worker/mapping.go) and the [tests](https://github.com/andygeiss/esp32-transpiler/blob/master/impl/worker/worker_test.go) to get the current functionality. +Look at the [mapping](https://github.com/andygeiss/esp32-transpiler/blob/master/transpile/mapping.go) and the [tests](https://github.com/andygeiss/esp32-transpiler/blob/master/impl/worker/worker_test.go) to get the current functionality. It is also not possible to trigger the C/C++ Garbage Collection, because Golang handles it automatically "under the hood". Go strings will be transpiled to C constant char arrays, which could be handled on the stack.