summaryrefslogtreecommitdiffstats
path: root/Source/cmFortranLexer.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Fix spelling typos in comments and documentation (#16037)Felix Geyer2016-03-291-1/+1
| | | | | The Debian package checker tool (lintian) detected several typos in CMake.
* cmFortranLexer: Populate empty doxygen @param commentsBrad King2015-11-041-2/+2
| | | | | Re-apply the change from commit v3.0.0-rc1~554^2~2 (cm*Lexer: Populate empty doxygen @param comment, 2013-09-19) after recent lexer generation.
* cmFortranParser: Parse #line directivesBrad King2015-11-021-289/+307
| | | | | | | Teach the lexer to extract the #line directive prefix and line number as a new token type. Teach the parser to recognize this token followed by a string as the file name (plus possibly other content). Report the named file as included by the source file.
* Rename Fortran parser infrastructure to drop "Depends" prefixKitware Robot2015-07-271-0/+2413
The parser can be re-used outside cmDependsFortran or the cmDepends class hierarchy so drop the "Depends" from its name: rename 's/DependsFortran([A-Za-z0-9_])/Fortran$1/' Source/*.* sed -i 's/DependsFortran\([A-Za-z0-9_]\)/Fortran\1/g' Source/*.* sed -i 's/FortranInternals/DependsFortranInternals/g' Source/*.* Also manually fix Source/CMakeLists.txt source file ordering.