(options)
| 662 | } |
| 663 | |
| 664 | function NoteReference(options) { |
| 665 | return { |
| 666 | type: types.noteReference, |
| 667 | noteType: options.noteType, |
| 668 | noteId: options.noteId |
| 669 | }; |
| 670 | } |
| 671 | |
| 672 | function Notes(notes) { |
| 673 | this._notes = _.indexBy(notes, function(note) { |
nothing calls this directly
no outgoing calls
no test coverage detected