(fieldNames: string[], native = false)
| 933 | _native: FIRFieldPath; |
| 934 | |
| 935 | constructor(fieldNames: string[], native = false) { |
| 936 | if (!native) { |
| 937 | this._native = FIRFieldPath.alloc().initWithFields(fieldNames); |
| 938 | this._addToMap(); |
| 939 | } |
| 940 | } |
| 941 | |
| 942 | private _addToMap() { |
| 943 | fp_refs.set(this.native.description, new WeakRef(this._native)); |