comparison dwtx/jface/text/rules/WhitespaceRule.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
62 * whitespace detector, will return a whitespace 62 * whitespace detector, will return a whitespace
63 * token when a whitespace is detected. 63 * token when a whitespace is detected.
64 * 64 *
65 * @param detector the rule's whitespace detector, may not be <code>null</code> 65 * @param detector the rule's whitespace detector, may not be <code>null</code>
66 */ 66 */
67 public WhitespaceRule(IWhitespaceDetector detector) { 67 public this(IWhitespaceDetector detector) {
68 Assert.isNotNull(detector); 68 Assert.isNotNull(detector);
69 fDetector= detector; 69 fDetector= detector;
70 } 70 }
71 71
72 /* 72 /*