| 1629 | } |
| 1630 | |
| 1631 | void FunctionDefHelper::AttrValueWrapper::InitFromString(StringPiece val) { |
| 1632 | if (val.size() >= 2 && val[0] == '$') { |
| 1633 | proto.set_placeholder(val.data() + 1, val.size() - 1); |
| 1634 | } else { |
| 1635 | SetAttrValue(val, &proto); |
| 1636 | } |
| 1637 | } |
| 1638 | |
| 1639 | FunctionDefHelper::AttrValueWrapper FunctionDefHelper::FunctionRef( |
| 1640 | const string& name, |
nothing calls this directly
no test coverage detected