Using the `--legacy-proto-load` flag with googleads protos generates invalid JS code in service client constructors. Below is a snippet showing the `);,` that causes compile errors between each `this._gaxGrpc.loadProto` call: ``` ... // Load the applicable protos. this._protos = Object.assign( {}, this._gaxGrpc.loadProto( path.join(__dirname, '..', '..', 'protos'), 'google/ads/googleads/v7/enums/policy_topic_entry_type.proto') );, this._gaxGrpc.loadProto( path.join(__dirname, '..', '..', 'protos'), 'google/ads/googleads/v7/enums/policy_topic_evidence_destination_mismatch_url_type.proto') );, ... ```
Using the
--legacy-proto-loadflag with googleads protos generates invalid JS code in service client constructors.Below is a snippet showing the
);,that causes compile errors between eachthis._gaxGrpc.loadProtocall: