Recursive transcompiling: Difference between revisions

Content deleted Content added
Eejai42 (talk | contribs)
No edit summary
Removed meaningless "Recursive transpiling" paragraph at the bottom.
Line 8:
 
Recursive transpiling takes advantage of the fact that Transpilers may either keep translated code as close to the source code as possible to ease development and [[debugging]] of the original source code, or else they may change the structure of the original code so much, that the translated code does not look like the source code. There are also debugging utilities that map the transpiled source code back to the original code; for example, [[JavaScript]] source maps allow mapping of the JavaScript code executed by a [[web browser]] back to the original source in a transpiled-to-JavaScript language.<ref name="javascript-sourcemaps">{{cite web | url=http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/ | title=Introduction to JavaScript Source Maps | publisher=html5rocks.com | date=21 March 2012 | accessdate=21 January 2015 | author=Seddon, Ryan}}</ref>
 
Recursive Transpiling
 
==References==