4d6ad5be17
finished yet.
21 lines
396 B
C++
21 lines
396 B
C++
#ifndef __PARSER_H
|
|
#define __PARSER_H
|
|
|
|
#include "eval.hh"
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
/* Parse a Nix expression from the specified file. If `path' refers
|
|
to a directory, then "/default.nix" is appended. */
|
|
Expr * parseExprFromFile(Path path);
|
|
|
|
/* Parse a Nix expression from the specified string. */
|
|
Expr * parseExprFromString(const string & s, const Path & basePath);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif /* !__PARSER_H */
|