aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.RegExpr/expression/CharClassSet.cs
Commit message (Collapse)AuthorAgeFilesLines
* Correct style errors in RegExprAli Can Demiralp2025-06-241-1/+1
| | | | | Change-Id: I239bf9cc5a08a4c56b076b7767b41b922a134dd5 Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
* Update copyright comments to 2025Ali Demiralp2025-03-181-4/+2
| | | | | Change-Id: I9ab1f8919a3d28cb546cd71bfdc8da1f6ae9e123 Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
* Change source license to LicenseRef-Qt-Commercial or GPL-3.0-onlyAli Can Demiralp2024-02-281-1/+1
| | | | | | | | ... WITH Qt-GPL-exception. Fixes: QTVSADDINBUG-1179 Change-Id: I74fe451eec352af13436548cfd9a28f832fc0757 Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
* Update license year from 2023 to 2024Ali Can Demiralp2024-01-091-1/+1
| | | | | Change-Id: I38700243f7ef55239b247945324e4e0a978b097f Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Remove redundant codeKarsten Heimrich2023-04-201-2/+2
| | | | | Change-Id: I94cc72280815ed31809747b93032dd8768fd75ca Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Remove redundant codeKarsten Heimrich2023-04-201-3/+4
| | | | | Change-Id: Ieae3cdeba7e46225ca8ff3698f0102c3ed286c48 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Make changes to RegExprMiguel Costa2023-03-281-5/+2
| | | | | | | | | | * Fix char set expressions, e.g.: CharSet['a','b','c'] * Token constructor with bool flag to auto-skip whitespace * WordBoundary ::= \b * Typo in comments Change-Id: If115fede1796ce04b84a107a210766b4553ea865 Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
* Use null coalescing expression and compound assignmentKarsten Heimrich2023-03-151-2/+2
| | | | | Change-Id: Ib99aea90e50246b039eafd35481e35cbd63c0d20 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Rewrite if statement using '?:', '??' or '??=' exressionKarsten Heimrich2023-02-241-6/+2
| | | | | Change-Id: I7ba1c633156c14fa87bac4ef02ed72031f7dd9de Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Replace license headerMiguel Costa2023-02-231-27/+4
| | | | | Change-Id: I6e7667d0f6f1245b5b225e74120d289bf595423d Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
* Fix expression is always 'true' or always 'false'Karsten Heimrich2022-10-051-1/+1
| | | | | Change-Id: I95a9f9b4e7512542a7a3de7b61029af4de8832b3 Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
* Modernization: Update propertiesKarsten Heimrich2022-10-041-17/+6
| | | | | | | | | * Use expression body. * Use expression-bodied properties. * Convert to auto-property if applicable. Change-Id: I2342f1194aca941e2a7ca70186422bd7835f8eed Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Modernization: Replace casts with pattern variableKarsten Heimrich2022-10-041-2/+2
| | | | | | | | * Use pattern matching if applicable. * Some replacements are done using a switch statement. Change-Id: Iefffdb3815c34ae9d3ddd6d2c7735a43e6c15f2b Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Make property privateKarsten Heimrich2022-02-091-2/+2
| | | | | Change-Id: I0680fcef9877e2d24a82eb5e9183173837fc3be3 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Make property get onlyKarsten Heimrich2022-02-091-4/+4
| | | | | Change-Id: I16f9ceec8ea96482f880b6b73e21f4523f6b845b Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Fix using directive is not requiredKarsten Heimrich2022-01-281-1/+0
| | | | | Change-Id: I8c0766b66b49206339d048f28d02caf9c10f7fb0 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* Format switch-case according to the .editorconfig ruleKarsten Heimrich2021-12-021-9/+9
| | | | | Change-Id: I87cf1f2058fe53b940d00e82299ba414823e17c6 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
* refactoring: Reorganize project filesMiguel Costa2021-11-161-0/+352
- Moved project files from the 'src' folder into the root 'vstools'. - Renamed some projects: * QtVsTools -> QtVsTools.Package * qtwizard -> QtVsTools.Wizards * Project template projects -> QtTemplate.Project.* * Item template projects -> QtTemplate.Item.* - Moved QtVsTools.Package source files to a sub-folder named 'Package'. NOTE: this change breaks the build; it should only be applied together with subsequent refactoring changes. Change-Id: Ib7b70c350d8e9f068a023b0250d6b490b17d1687 Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>