forked from lix-project/lix
9f8f39aa3c
removed, paths are absolutised relative to the path containing the expression we just parsed, and integer literals are converted to actual integers.
11 lines
126 B
C++
11 lines
126 B
C++
#ifndef __PARSER_H
|
|
#define __PARSER_H
|
|
|
|
#include "fix-expr.hh"
|
|
|
|
|
|
Expr parseExprFromFile(Path path);
|
|
|
|
|
|
#endif /* !__PARSER_H */
|