File: syntax-chart.dot

package info (click to toggle)
faust 0.9.46-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 15,256 kB
  • ctags: 9,961
  • sloc: cpp: 47,746; sh: 2,254; ansic: 1,503; makefile: 1,211; ruby: 950; yacc: 468; objc: 459; lex: 200; xml: 177
file content (57 lines) | stat: -rw-r--r-- 1,285 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
 
strict digraph faustflow {
    root=syntax;
    ordering=out;
      
    declaration[label="3.2.1 Declarations"];
  	fileimport[label="3.2.2 File Imports"];
	documentation[label="3.2.3 Documentation"];

    simple[label="3.3.1 Simple"];
    fundef[label="3.3.2 Function"];
    patdef[label="3.3.3 Pattern"];
    
    diag[label="3.4.1 Diag."];
    math[label="3.4.2.1 Math"];
    bit[label="3.4.2.2 Bitwise"];
    cmp[label="3.4.2.3 Compare"];
    
    time[label="3.4.3 Time"];
    env[label="3.4.4 Lexical"];
    foreign[label="3.4.5 Foreign"];
    prog[label="3.4.6 Lambda"];

    infix[label="3.4.2 Infix"];


    node[shape=box, color=blue, fillcolor=lightblue, style=filled];
    program[label="3.1 Program"];
    statement[label="3.2 Statements"];
    definition[label="3.3 Definitions"];
    expr[label="3.4 Expressions"];
    prim[label="3.5 Primitives"];
  

    program->statement;
    statement->declaration;
    statement->fileimport;
    statement->definition;
    statement->documentation;
     
    definition->simple->expr;
    definition->fundef->expr;
    definition->patdef->expr;

    expr->diag;		
    expr->infix;
    
    infix->math->prim;
    infix->bit->prim;
    infix->cmp->prim;

    expr->time;
    expr->env;
    expr->foreign;
    expr->prog;
    
}