~ubuntu-branches/ubuntu/feisty/faust/feisty

« back to all changes in this revision

Viewing changes to compiler/evaluate/eval.hh

  • Committer: Bazaar Package Importer
  • Author(s): Mario Lang
  • Date: 2006-10-09 11:05:30 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20061009110530-zvktdvpq5zewdxso
Tags: 0.9.8-1
* New upstream release.
* Upgrade Standards-Version to 3.7.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
 
38
38
#include "boxes.hh"
 
39
#include "sourcereader.hh"
39
40
 
40
41
 
41
42
/**
49
50
Tree evalprocess (Tree eqlist);
50
51
 
51
52
 
 
53
/**
 
54
 * Indicates the identifier (if any) the expression was a definition of.
 
55
 * 
 
56
 * Eval the definition of 'process' in the environment passed as argument
 
57
 * @param t the expression 
 
58
 * @param id reference to the identifier 
 
59
 * @return true if the expression t was a definition of id
 
60
 **/
 
61
 
 
62
bool    getDefNameProperty(Tree t, Tree& id);
 
63
 
 
64
 
52
65
 
53
66
#endif