|
FAUST compiler
0.9.9.6b8
|


Go to the source code of this file.
Functions | |
| Tree | normalizePath (Tree path) |
| Tree normalizePath | ( | Tree | path | ) |
Definition at line 133 of file labels.cpp.
References hd(), isNil(), normalizeLabel(), normalizePath(), and tl().
Referenced by normalizePath(), and propagate().
{
//cout << "Normalize Path [[" << *path << "]]" << endl;
Tree npath;
if (isNil(path)) {
npath = path;
} else {
npath = normalizeLabel(hd(path), normalizePath(tl(path)));
}
//cout << " -> [[" << *npath << "]]" << endl;
return npath;
}


1.8.0