-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from unidoc-build/prep-rc-v0.5.0-take2
prepare release 0.5.0
- Loading branch information
Showing
9 changed files
with
426 additions
and
340 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,18 @@ | ||
// | ||
// Copyright 2020 FoxyUtils ehf. All rights reserved. | ||
// | ||
// This is a commercial product and requires a license to operate. | ||
// A trial license can be obtained at https://unidoc.io | ||
// | ||
// DO NOT EDIT: generated by unitwist Go source code obfuscator. | ||
// | ||
// Use of this source code is governed by the UniDoc End User License Agreement | ||
// terms that can be accessed at https://unidoc.io/eula/ | ||
|
||
package selector ;import _a "errors";const (ByUndefined ByType =iota ;ByID ;ByQueryAll ;ByQuery ;ByNodeID ;ByJSPath ;BySearch ;); | ||
|
||
// ByType is a 'By' selector type enumerator. | ||
type ByType uint ; | ||
|
||
// Validate checks validity of the ByType. | ||
func (_e ByType )Validate ()error {if _e >=ByID &&_e <=BySearch {return nil ;};return _a .New ("\u0069\u006e\u0076\u0061li\u0064\u0020\u0062\u0079\u0020\u0073\u0065\u006c\u0065\u0063\u0074\u006f\u0072");}; |
Oops, something went wrong.