Changeset 509 for branches/IDLDOC_3_1
- Timestamp:
- 06/19/08 19:10:01 (4 years ago)
- Location:
- branches/IDLDOC_3_1/idldoc
- Files:
-
- 3 modified
-
Makefile (modified) (1 diff)
-
src/idldoc_version.pro (modified) (1 diff)
-
src/parser/docparprofileparser__define.pro (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/IDLDOC_3_1/idldoc/Makefile
r496 r509 1 VERSION=3.1. 01 VERSION=3.1.1 2 2 REVISION=-r`svn info | sed -n 's/Revision: \(.*\)/\1/p'` 3 3 IDL=idl -
branches/IDLDOC_3_1/idldoc/src/idldoc_version.pro
r496 r509 13 13 compile_opt strictarr 14 14 15 version = '3.1. 0'16 revision = '-r49 4'15 version = '3.1.1' 16 revision = '-r498' 17 17 18 18 return, version + (keyword_set(full) ? (' ' + revision) : '') -
branches/IDLDOC_3_1/idldoc/src/parser/docparprofileparser__define.pro
r492 r509 324 324 ; token delimiters are: space, tab, comma, and colon 325 325 delims = ' ' + string(9B) + ',:' 326 tokens = strsplit(self->_stripComments(command), delims, /extract, count=nTokens) 326 cmd = self->_stripComments(command) 327 tokens = strsplit(cmd, delims, /extract, count=nTokens) 327 328 if (nTokens eq 0) then begin 328 329 if (justFinishedComment eq 2 && currentComments->count() gt 0) then begin … … 393 394 file->addRoutine, routine 394 395 395 routine->setProperty, name=(strsplit(tokens[1], ',', /extract))[0] 396 ; if there is a routine header with a :: in it, then it's a method name 397 routineName = strpos(cmd, '::') eq -1 ? tokens[1] : strjoin(tokens[1:2], '::') 398 routine->setProperty, name=routineName 399 396 400 formatParser->checkForClass, routine 397 401 if (strpos(tokens[1], '::') ne -1) then routine->setProperty, is_method=1B
