FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lpython/src/lpython/semantics/semantic_exception.h at main · AkshayWarrier/lpython · GitHub
AkshayWarrier
/
lpython
Public
forked from
lcompilers/lpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lpython
/
src
/
lpython
/
semantics
/
semantic_exception.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (23 loc) · 679 Bytes
Breadcrumbs
lpython
/
src
/
lpython
/
semantics
/
semantic_exception.h
Copy path
File metadata and controls
32 lines (23 loc) · 679 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
ifndef
LFORTRAN_SEMANTICS_SEMANTIC_EXCEPTION_H
#
define
LFORTRAN_SEMANTICS_SEMANTIC_EXCEPTION_H
#
include
<
libasr/exception.h
>
namespace
LCompilers
::LPython {
//
This exception is only used internally in the lpython/semantics/ directory
//
and in lpython/asr_utils.h/cpp. Nowhere else.
class
SemanticError
{
public:
diag::Diagnostic d;
public:
SemanticError
(
const
std::string &msg,
const
Location &loc)
: d{
diag::Diagnostic
(msg, diag::Level::Error, diag::Stage::Semantic, {
diag::Label
(
"
"
, {loc})
})}
{ }
SemanticError
(
const
diag::Diagnostic &d) : d{d} { }
};
class
SemanticAbort
{
};
}
//
namespace LCompilers::LPython
#
endif
Back
|
FazBrowse Home
|
New Git URL