-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure contributed problem patterns are found correctly (#12805)
- Resolve pattern names correctly by removing leading '$' - Introduce utility function for dealing with variable names - Ensure 'ready' promises are already available with object creation Fixes #12725
- Loading branch information
1 parent
5720724
commit 9001508
Showing
7 changed files
with
69 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// ***************************************************************************** | ||
// Copyright (C) 2023 EclipseSource and others. | ||
// | ||
// This program and the accompanying materials are made available under the | ||
// terms of the Eclipse Public License v. 2.0 which is available at | ||
// http://www.eclipse.org/legal/epl-2.0. | ||
// | ||
// This Source Code may also be made available under the following Secondary | ||
// Licenses when the conditions for such availability set forth in the Eclipse | ||
// Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
// with the GNU Classpath Exception which is available at | ||
// https://www.gnu.org/software/classpath/license.html. | ||
// | ||
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 | ||
// ***************************************************************************** | ||
|
||
/** | ||
* Converts the given standard name to a variable name starting with '$' if not already present. | ||
* | ||
* Variable names are used, for instance, to reference problem matchers, within task configurations. | ||
* | ||
* @param name standard name | ||
* @returns variable name with leading '$' if not already present. | ||
* | ||
* @see {@link fromVariableName} for the reverse conversion. | ||
*/ | ||
export function asVariableName(name: string): string { | ||
return name.startsWith('$') ? name : `$${name}`; | ||
} | ||
|
||
/** | ||
* Converts a given variable name to a standard name, effectively removing a leading '$' if present. | ||
* | ||
* Standard names are used, for instance, in registries to store variable objects | ||
* | ||
* @param name variable name | ||
* @returns variable name without leading '$' if present. | ||
* | ||
* @see {@link asVariableName} for the reverse conversion. | ||
*/ | ||
export function fromVariableName(name: string): string { | ||
return name.startsWith('$') ? name.slice(1) : name; | ||
} |