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