| 60 | const VARIABLE_VALUE_COMMENT_REGEX = /^(.*?)( *[#;].*)$/ |
| 61 | |
| 62 | const extractSectionLine = line => { |
| 63 | const matches = SECTION_LINE_REGEX.exec(line) |
| 64 | if (matches != null) { |
| 65 | const [section, subsection] = matches.slice(1) |
| 66 | return [section, subsection] |
| 67 | } |
| 68 | return null |
| 69 | } |
| 70 | |
| 71 | const extractVariableLine = line => { |
| 72 | const matches = VARIABLE_LINE_REGEX.exec(line) |
no test coverage detected
searching dependent graphs…