| 627 | } |
| 628 | |
| 629 | void LexState::PropSet(const char *key, const char *val) { |
| 630 | props.Set(key, val); |
| 631 | if (instance) { |
| 632 | int firstModification = instance->PropertySet(key, val); |
| 633 | if (firstModification >= 0) { |
| 634 | pdoc->ModifiedAt(firstModification); |
| 635 | } |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | const char *LexState::PropGet(const char *key) const { |
| 640 | return props.Get(key); |
no test coverage detected