From 36481c5698a8e6edf571822635d17063e609e2f4 Mon Sep 17 00:00:00 2001 From: mysteryven Date: Sat, 12 Nov 2022 13:52:31 +0800 Subject: [PATCH] Change new link of source maps The previous link of Source Maps invalid now, and change it to a new link. previous link: http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/ new link: https://developer.chrome.com/blog/sourcemaps --- translations/en/plugin-handbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/en/plugin-handbook.md b/translations/en/plugin-handbook.md index 112a8ebb..6b215226 100644 --- a/translations/en/plugin-handbook.md +++ b/translations/en/plugin-handbook.md @@ -318,7 +318,7 @@ So we won't dive too deep right now. The [code generation](https://en.wikipedia.org/wiki/Code_generation_(compiler)) stage takes the final AST and turns it back into a string of code, also creating -[source maps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/). +[source maps](https://developer.chrome.com/blog/sourcemaps/). Code generation is pretty simple: you traverse through the AST depth-first, building a string that represents the transformed code.