Content deleted Content added
Jerryobject (talk | contribs) WP:LINKs: update-standardizes, needless WP:PIPEs > WP:NOPIPEs, adds. Nonlead-word nonproper noun MOS:CAPS > WP:LOWERCASE sentence case. Small WP:COPYEDITs WP:EoS: WP:TERSE, clarify, parallelism (grammar), MOS:NOTETHAT cut. MOS:FIRSTABBReviation clarify, define before WP:ABBR in parentheses. Spaced: hyphens, MDASHs > NDASHs. |
|||
(6 intermediate revisions by 6 users not shown) | |||
Line 1:
{{short description|Style of computer programming}}
In [[computer science]], '''
== Historical movement ==
Line 22 ⟶ 23:
Standish attributed the failure of the extensibility movement to the difficulty of programming successive extensions. A programmer might build a first shell of macros around a base language. Then, if a second shell of macros is built around that, any subsequent programmer must be intimately familiar with both the base language, and the first shell. A third shell would require familiarity with the base and both the first and second shells, and so on. Shielding a programmer from lower-level details is the intent of the [[Abstraction (computer science)|abstraction]] movement that supplanted the extensibility movement.
Despite the earlier presentation of Simula as extensible, by 1975, Standish's survey does not seem in practice to have included the newer abstraction-based technologies (though he used a very general definition of extensibility that technically could have included them). A 1978 history of programming abstraction from the invention of the computer until then, made no mention of macros, and gave no hint that the extensible languages movement had ever occurred.<ref name="Guarino1978">Guarino, L.R., "[
== Modern movement ==
Line 56 ⟶ 57:
=== Source language debugging support ===
Extensible programming systems must support the debugging of programs using the constructs of the original source language regardless of the extensions or transformation the program has undergone in order to make it executable. Most notably, it cannot be assumed that the only way to display runtime data is in ''structures'' or ''arrays''. The debugger, or more correctly 'program inspector', must permit the display of runtime data in forms suitable to the source language. For example, if the language supports a data structure for a [[business process]] or [[work flow]], it must be possible for the debugger to display that data structure as a [[fishbone chart]] or other form provided by a plugin.
==Examples==
Line 71:
* [[XML]]
* [[Forth (programming language)|Forth]]
* [[Factor (programming language)|Factor]]
* [[Lisp (programming language)|Lisp]]
** [[Racket (programming language)|Racket]]
Line 98 ⟶ 99:
=== Tools ===
# [http://www.meta-language.net/ MetaL] – [https://web.archive.org/web/20050220100913/http://pyre.third-bit.com/pipermail/extprog/2005-January/000019.html an extensible programming compiler engine implementation]
# [
# [http://www.jetbrains.com/mps/ MPS] – JetBrains Metaprogramming system
=== Languages with extensible syntax ===
# [
# [http://cs.nyu.edu/rgrimm/xtc/ xtc – eXTensible C]
# [https://github.com/pannous/english-script English-script]
Line 108 ⟶ 109:
# [https://web.archive.org/web/20050817205802/http://boo.codehaus.org/Syntactic+Macros Boo Syntactic Macros]
# [https://web.archive.org/web/20061022071450/http://suif.stanford.edu/ Stanford University Intermediate Format compiler]
# [
# [https://github.com/chrisseaton/katahdin Katahdin]
# [http://www.pi-programming.org/What.html π] – a language with extensible syntax, implemented using an [[Earley parser]]
|