-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ImportVisitor is relatively new, but was forgotten to be marked as private. As such, it became listed on doc.wikimedia.org, even though it is not a public or stable API for external usage https://doc.wikimedia.org/mediawiki-libs-less.php/ * Idem for several Less_Parser utility functions. * Fix Doxygen warning about missing param doc for saturate(). * Fix Doxygen warning about invalid param doc for SetImportDirs. * Remove noise from `@param-` comments on doc.wikimedia.org by setting this to noop. We do the same in MediaWiki for example https://gerrit.wikimedia.org/g/mediawiki/core/+/2e9414bd80/maintenance/Doxyfile#64 * Hide two internal functions from the output. Note that `@private` only works on classes and other entities not explicitly marked public. To hide a "public" static function, we use `@internal` instead. https://www.doxygen.nl/manual/commands.html#cmdprivate Change-Id: I3b51240577a6aec48045c15c2e7d32d491be655e
- Loading branch information
Showing
4 changed files
with
10 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?php | ||
|
||
/** | ||
* @private | ||
*/ | ||
class Less_ImportVisitor extends Less_Visitor { | ||
|
||
public $env; | ||
|
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