User Tools

Site Tools


at:tutorial:metaprogramming

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
at:tutorial:metaprogramming [2007/04/19 19:12]
stimberm
at:tutorial:metaprogramming [2009/11/21 07:44]
tvcutsem
Line 1: Line 1:
-<note>This tutorial is under heavy construction!</note> 
  
-===== Metaprogramming ===== 
- 
-==== AT Zero - AmbientTalk without syntactic sugar ==== 
- 
-In AmbientTalk, everything is an object, also native values such as numbers, booleans, strings and tables. Hence, the only way to interact with these values is by sending messages to them. However, there are some constructs in AmbientTalk that do not seem to send a message at all. Examples are table access/assignment, control structures and arithmic operations: 
-<code> 
->[5,6,7][2] 
->>6 
->if: 1 == 2 then: { 13 } else: { 42 } 
->>42 
->1 + 2 * 3 
->>7 
-</code> 
-However, these constructs are all **syntactic sugar**. Behind the scenes, they all perform message sends. The following code shows the equivalents of the previous code, but with the actual message sends: 
-<code> 
->[5, 6, 7].at(2) 
->>6 
->(1 == 2).ifTrue: { 13 } ifFalse: { 42 } 
->>42 
->1.+(2.*(3)) 
->>7 
-</code> 
- 
-==== Quasiquoting and splicing ==== 
- 
-=== Qouting === 
- 
-Any valid AmbientTalk expression can be quoted. This prevents the expression from being evaluated. Instead, it is returned literally. 
- 
-Quoting and expression is done with the ''`'' operator. There are four variants: 
- 
-  * ''`...'' for quoting literal values 
-  * ''`(...)'' for quoting expressions 
-  * ''`{...}'' for quoting statement lists 
-  * ''`[...]'' for quoting tables 
- 
-== Literal values ==  
- 
-Quoting a literal value such as a number or a string results in the exact same number or string. 
-<code> 
->`3 == 3 
->>true 
->`3 + 8 
->>11 
->`"text" == "text" 
->>true 
-</code> 
- 
-An identifer can also be quoted. This returns a symbol object: 
-<code> 
->foo 
-Undefined variable access: foo 
->`foo 
->>foo 
->`foo.text 
->>"foo" 
-</code> 
- 
-Note that in ''`foo.text'', the quoted expression is ''foo'' and //not// ''foo.text''. The selection is performed on the result of the quotation, in this case a symbol. 
- 
-== Expressions ==  
- 
-To quote a complete expression, it has to be wrapped in parantheses: 
- 
-<code> 
->`(foo.text) 
->>foo.text 
->`(foo(1, 2, 3)) 
->>foo(1, 2, 3) 
->`(1+2) 
->>1.+(2) 
->`(o.m()) 
->>o.m() 
-</code> 
- 
-== Statements == 
- 
-Statements (definitions, assignments, ...) can also be quoted, but only inside a quoted statement list. Trying to quote a statement in the same way as an expression will cause a parse error. 
- 
-<code> 
->`{ def a := 4 } 
->>def a := 4 
->`{ def tab[5] { m() }; tab[3] := n() } 
->>def tab[5] { m()}; tab[3] := n() 
-</code> 
- 
-If you actually want to quote a literal closure, you should use parantheses, since a literal closure is an expression. 
-<note> 
-`{ | foo | foo := 4 } gives a literal closure AG???? 
-</note> 
- 
-== Tables == 
- 
-Literal tables can already be defined as follows: 
-<code> 
->def tab := [ 1+2, 3+4, 5+6 ] 
->>[3, 7, 11] 
-</code> 
-With this construct, all the elements of the literal table are evaluated. By quoting a literal table, all the elements are quoted instead of evaluated: 
-<code> 
->def tab := `[ 1+2, 3+4, 5+6 ] 
->>[1.+(2), 3.+(4), 5.+(6)] 
-</code> 
- 
- 
- 
-==== First-class abstract grammar ==== 
at/tutorial/metaprogramming.txt ยท Last modified: 2009/11/21 07:44 by tvcutsem