(style, string, context)
| 49 | // Takes a string of words separated by spaces and adds them as |
| 50 | // keys with the value of the first argument 'style' |
| 51 | function define(style, string, context) { |
| 52 | if (context) { |
| 53 | var split = string.split(' '); |
| 54 | for (var i = 0; i < split.length; i++) { |
| 55 | words[split[i]] = {style: style, state: context}; |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | //datastep |
| 60 | define('def', 'stack pgm view source debug nesting nolist', ['inDataStep']); |
| 61 | define('def', 'if while until for do do; end end; then else cancel', ['inDataStep']); |
no outgoing calls
no test coverage detected