diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-12-11 21:44:32 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-12-11 21:44:32 +0100 |
| commit | fbd08f27078f2e86c7e0ae65fd8d89658c0c34bd (patch) | |
| tree | a0b9877afe08fadaeec8bb463e6189c29b445141 /lib/Language/Elna/Frontend | |
| parent | 7fc90f1d2d1686ccf928418b91c043b1d6d9ced2 (diff) | |
| download | elna-fbd08f27078f2e86c7e0ae65fd8d89658c0c34bd.tar.gz | |
Add more internal allocation errors
Diffstat (limited to 'lib/Language/Elna/Frontend')
| -rw-r--r-- | lib/Language/Elna/Frontend/AST.hs | 4 | ||||
| -rw-r--r-- | lib/Language/Elna/Frontend/NameAnalysis.hs | 4 | ||||
| -rw-r--r-- | lib/Language/Elna/Frontend/Parser.hs | 4 | ||||
| -rw-r--r-- | lib/Language/Elna/Frontend/SymbolTable.hs | 4 | ||||
| -rw-r--r-- | lib/Language/Elna/Frontend/TypeAnalysis.hs | 4 | ||||
| -rw-r--r-- | lib/Language/Elna/Frontend/Types.hs | 4 |
6 files changed, 24 insertions, 0 deletions
diff --git a/lib/Language/Elna/Frontend/AST.hs b/lib/Language/Elna/Frontend/AST.hs index c9e05ef..32ca583 100644 --- a/lib/Language/Elna/Frontend/AST.hs +++ b/lib/Language/Elna/Frontend/AST.hs @@ -1,3 +1,7 @@ +{- This Source Code Form is subject to the terms of the Mozilla Public License, + v. 2.0. If a copy of the MPL was not distributed with this file, You can + obtain one at https://mozilla.org/MPL/2.0/. -} + module Language.Elna.Frontend.AST ( Declaration(..) , Identifier(..) diff --git a/lib/Language/Elna/Frontend/NameAnalysis.hs b/lib/Language/Elna/Frontend/NameAnalysis.hs index 596ffb2..8e9e7c0 100644 --- a/lib/Language/Elna/Frontend/NameAnalysis.hs +++ b/lib/Language/Elna/Frontend/NameAnalysis.hs @@ -1,3 +1,7 @@ +{- This Source Code Form is subject to the terms of the Mozilla Public License, + v. 2.0. If a copy of the MPL was not distributed with this file, You can + obtain one at https://mozilla.org/MPL/2.0/. -} + module Language.Elna.Frontend.NameAnalysis ( nameAnalysis , Error(..) diff --git a/lib/Language/Elna/Frontend/Parser.hs b/lib/Language/Elna/Frontend/Parser.hs index 4878b28..1e4499c 100644 --- a/lib/Language/Elna/Frontend/Parser.hs +++ b/lib/Language/Elna/Frontend/Parser.hs @@ -1,3 +1,7 @@ +{- This Source Code Form is subject to the terms of the Mozilla Public License, + v. 2.0. If a copy of the MPL was not distributed with this file, You can + obtain one at https://mozilla.org/MPL/2.0/. -} + module Language.Elna.Frontend.Parser ( Parser , programP diff --git a/lib/Language/Elna/Frontend/SymbolTable.hs b/lib/Language/Elna/Frontend/SymbolTable.hs index 4333acc..5c2153d 100644 --- a/lib/Language/Elna/Frontend/SymbolTable.hs +++ b/lib/Language/Elna/Frontend/SymbolTable.hs @@ -1,3 +1,7 @@ +{- This Source Code Form is subject to the terms of the Mozilla Public License, + v. 2.0. If a copy of the MPL was not distributed with this file, You can + obtain one at https://mozilla.org/MPL/2.0/. -} + module Language.Elna.Frontend.SymbolTable ( SymbolTable , Info(..) diff --git a/lib/Language/Elna/Frontend/TypeAnalysis.hs b/lib/Language/Elna/Frontend/TypeAnalysis.hs index 48be782..ea81c4e 100644 --- a/lib/Language/Elna/Frontend/TypeAnalysis.hs +++ b/lib/Language/Elna/Frontend/TypeAnalysis.hs @@ -1,3 +1,7 @@ +{- This Source Code Form is subject to the terms of the Mozilla Public License, + v. 2.0. If a copy of the MPL was not distributed with this file, You can + obtain one at https://mozilla.org/MPL/2.0/. -} + module Language.Elna.Frontend.TypeAnalysis ( typeAnalysis , -- Error(..) diff --git a/lib/Language/Elna/Frontend/Types.hs b/lib/Language/Elna/Frontend/Types.hs index a3cc730..f7a7e9d 100644 --- a/lib/Language/Elna/Frontend/Types.hs +++ b/lib/Language/Elna/Frontend/Types.hs @@ -1,3 +1,7 @@ +{- This Source Code Form is subject to the terms of the Mozilla Public License, + v. 2.0. If a copy of the MPL was not distributed with this file, You can + obtain one at https://mozilla.org/MPL/2.0/. -} + module Language.Elna.Frontend.Types ( Type(..) , addressByteSize |
