Add __FILE__, __LINE__ to class-, module_eval calls #106
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Sometimes when exploring or debugging code it's necessary to know where
some method was defined. For this purpose
Method#source_location
isused. It reports a filename and a line in the file with a method
definition. However, when using
Module#class_eval
andModule#module_eval
to dynamically define methods,the output of
Method#source_location
is uninformative.For this reason it's better to add
__FILE__
and__LINE__
constantsas the second and third arguments to the aforementioned methods. This
allows
Method#source_location
to properly locate methods which wasdefined dynamically.
Here's some examples: