Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tokenVocab option to separate parsers in tests to avoid ANTLR warnings #258

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/grammars/SeparateParser.g4
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017-2023 Renata Hodovan, Akos Kiss.
* Copyright (c) 2017-2024 Renata Hodovan, Akos Kiss.
*
* Licensed under the BSD 3-Clause License
* <LICENSE.rst or https://opensource.org/licenses/BSD-3-Clause>.
Expand All @@ -19,6 +19,10 @@

parser grammar SeparateParser;

options {
tokenVocab = SeparateLexer;
}

start
: TOKEN
;
6 changes: 5 additions & 1 deletion tests/grammars/UnicodePropertiesParser.g4
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 Renata Hodovan, Akos Kiss.
* Copyright (c) 2023-2024 Renata Hodovan, Akos Kiss.
*
* Licensed under the BSD 3-Clause License
* <LICENSE.rst or https://opensource.org/licenses/BSD-3-Clause>.
Expand All @@ -18,4 +18,8 @@

parser grammar UnicodePropertiesParser;

options {
tokenVocab = UnicodePropertiesLexer;
}

start : UPROP GENERAL ENUM_BLOCK ENUM_SCRIPT INVERTED EXTRAS INVERTED_EXTRAS;
Loading