about summary refs log blame commit diff
path: root/src/libexpr/parser.hh
blob: 461dae08cd9263a9255b9c8f5e668dbaefa814e4 (plain) (tree)
1
2
3
4
5
6
7
8
9


                  
                     
 
 

                                                                    
                                  
 



                                                       

                        
#ifndef __PARSER_H
#define __PARSER_H

#include "nixexpr.hh"


/* Parse a Nix expression from the specified file.  If `path' refers
   to a directory, the "/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 */