Skip to content

Commit bd48a85

Browse files
Rename fortran_evaluator to python_evaluator
1 parent 81d07df commit bd48a85

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/bin/lpython.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include <libasr/codegen/asr_to_cpp.h>
1414
#include <libasr/codegen/asr_to_py.h>
1515
#include <libasr/codegen/asr_to_x86.h>
16-
#include <lpython/fortran_evaluator.h>
16+
#include <lpython/python_evaluator.h>
1717
#include <libasr/codegen/evaluator.h>
1818
#include <libasr/pass/do_loops.h>
1919
#include <libasr/pass/for_all.h>

src/lpython/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
set(SRC
22
semantics/python_ast_to_asr.cpp
33

4-
fortran_evaluator.cpp
4+
python_evaluator.cpp
55

66
pickle.cpp
77
python_serialization.cpp
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22
#include <fstream>
33

4-
#include <lpython/fortran_evaluator.h>
4+
#include <lpython/python_evaluator.h>
55
#include <libasr/codegen/asr_to_cpp.h>
66
#include <libasr/exception.h>
77
#include <libasr/asr.h>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef LFORTRAN_FORTRAN_EVALUATOR_H
2-
#define LFORTRAN_FORTRAN_EVALUATOR_H
1+
#ifndef LFORTRAN_PYTHON_EVALUATOR_H
2+
#define LFORTRAN_PYTHON_EVALUATOR_H
33

44
#include <iostream>
55
#include <memory>
@@ -66,4 +66,4 @@ class PythonCompiler
6666

6767
} // namespace LFortran
6868

69-
#endif // LFORTRAN_FORTRAN_EVALUATOR_H
69+
#endif // LFORTRAN_PYTHON_EVALUATOR_H

src/lpython/tests/test_llvm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <cmath>
44

5-
#include <lpython/fortran_evaluator.h>
5+
#include <lpython/python_evaluator.h>
66
#include <libasr/codegen/evaluator.h>
77
#include <libasr/exception.h>
88
#include <libasr/asr.h>

0 commit comments

Comments
 (0)