Skip to content

Commit

Permalink
src: make debug_options getters public
Browse files Browse the repository at this point in the history
This simplifies requires for those using DebugOptions,
since debug_options was defined in src/node_options-inl.h  and thus
embedders would need to require an extra file to do what could
trivially be consolidated into one.

PR-URL: #30494
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
  • Loading branch information
codebytere authored and BethGriggs committed Feb 6, 2020
1 parent 2d23502 commit 24a5929
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
8 changes: 0 additions & 8 deletions src/node_options-inl.h
Expand Up @@ -13,14 +13,6 @@ PerIsolateOptions* PerProcessOptions::get_per_isolate_options() {
return per_isolate.get();
}

DebugOptions* EnvironmentOptions::get_debug_options() {
return &debug_options_;
}

const DebugOptions& EnvironmentOptions::debug_options() const {
return debug_options_;
}

EnvironmentOptions* PerIsolateOptions::get_per_env_options() {
return per_env.get();
}
Expand Down
5 changes: 3 additions & 2 deletions src/node_options.h
Expand Up @@ -172,8 +172,9 @@ class EnvironmentOptions : public Options {

std::vector<std::string> user_argv;

inline DebugOptions* get_debug_options();
inline const DebugOptions& debug_options() const;
inline DebugOptions* get_debug_options() { return &debug_options_; }
inline const DebugOptions& debug_options() const { return debug_options_; }

void CheckOptions(std::vector<std::string>* errors) override;

private:
Expand Down

0 comments on commit 24a5929

Please sign in to comment.