From 08b08b03bcbc8557a61c474641ad8c08d01e0b25 Mon Sep 17 00:00:00 2001 From: Michael Rybakin Date: Fri, 20 Oct 2023 21:26:13 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D0=BF=D1=80=D0=B5=D1=84=D0=B8=D0=BA=D1=81=D1=8B?= =?UTF-8?q?=20=D0=BB=D0=B8=D1=86=D0=B5=D0=BD=D0=B7=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/OneScript.Language/LexicalAnalysis/LabelLexerState.cs | 7 +++++++ .../SyntaxAnalysis/AstNodes/ErrorTerminalNode.cs | 7 +++++++ .../SyntaxAnalysis/AstNodes/LabelNode.cs | 7 +++++++ 3 files changed, 21 insertions(+) diff --git a/src/OneScript.Language/LexicalAnalysis/LabelLexerState.cs b/src/OneScript.Language/LexicalAnalysis/LabelLexerState.cs index d9734fb91..fbabf2d8c 100644 --- a/src/OneScript.Language/LexicalAnalysis/LabelLexerState.cs +++ b/src/OneScript.Language/LexicalAnalysis/LabelLexerState.cs @@ -1,3 +1,10 @@ +/*---------------------------------------------------------- +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 http://mozilla.org/MPL/2.0/. +----------------------------------------------------------*/ + using System.Diagnostics; using OneScript.Localization; diff --git a/src/OneScript.Language/SyntaxAnalysis/AstNodes/ErrorTerminalNode.cs b/src/OneScript.Language/SyntaxAnalysis/AstNodes/ErrorTerminalNode.cs index b3a0a3deb..a4a3c76f9 100644 --- a/src/OneScript.Language/SyntaxAnalysis/AstNodes/ErrorTerminalNode.cs +++ b/src/OneScript.Language/SyntaxAnalysis/AstNodes/ErrorTerminalNode.cs @@ -1,3 +1,10 @@ +/*---------------------------------------------------------- +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 http://mozilla.org/MPL/2.0/. +----------------------------------------------------------*/ + using OneScript.Language.LexicalAnalysis; namespace OneScript.Language.SyntaxAnalysis.AstNodes diff --git a/src/OneScript.Language/SyntaxAnalysis/AstNodes/LabelNode.cs b/src/OneScript.Language/SyntaxAnalysis/AstNodes/LabelNode.cs index f26c8adc5..9721e90ce 100644 --- a/src/OneScript.Language/SyntaxAnalysis/AstNodes/LabelNode.cs +++ b/src/OneScript.Language/SyntaxAnalysis/AstNodes/LabelNode.cs @@ -1,3 +1,10 @@ +/*---------------------------------------------------------- +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 http://mozilla.org/MPL/2.0/. +----------------------------------------------------------*/ + using OneScript.Language.LexicalAnalysis; namespace OneScript.Language.SyntaxAnalysis.AstNodes