( properties: ObjectExpression['properties'], loc: SourceLocation = locStub, )
| 660 | } |
| 661 | |
| 662 | export function createObjectExpression( |
| 663 | properties: ObjectExpression['properties'], |
| 664 | loc: SourceLocation = locStub, |
| 665 | ): ObjectExpression { |
| 666 | return { |
| 667 | type: NodeTypes.JS_OBJECT_EXPRESSION, |
| 668 | loc, |
| 669 | properties, |
| 670 | } |
| 671 | } |
| 672 | |
| 673 | export function createObjectProperty( |
| 674 | key: Property['key'] | string, |
no outgoing calls
no test coverage detected