gecko-dev/dom/chrome-webidl/MatchGlob.webidl
Nika Layzell a525f604ba Bug 1693271 - Part 1: Use RustRegex for MatchGlob, r=kmag
This also involves making MatchGlob operate on UTF8String instead of DOMString,
as the rust `regex` crate operates on utf-8 strings. This should have no
functional impact on callers.

Differential Revision: https://phabricator.services.mozilla.com/D158877
2022-10-13 21:46:57 +00:00

27 lines
856 B
Plaintext

/* 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/. */
/**
* Represents a simple glob pattern matcher. Any occurrence of "*" in the glob
* pattern matches any literal string of characters in the string being
* compared. Additionally, if created with `allowQuestion = true`, any
* occurrence of "?" in the glob matches any single literal character.
*/
[ChromeOnly, Exposed=Window]
interface MatchGlob {
[Throws]
constructor(UTF8String glob, optional boolean allowQuestion = true);
/**
* Returns true if the string matches the glob.
*/
boolean matches(UTF8String string);
/**
* The glob string this MatchGlob represents.
*/
[Constant]
readonly attribute UTF8String glob;
};