Tagged Questions
The line-number tag has no wiki summary.
4
votes
1answer
132 views
How to get surrounding method in Java source file for a given line number
I have a line number of a Java source file and want to get the sourounding method for that line number programatically.
4
votes
1answer
238 views
Is it possible to get the page number and line number in iPhone
Is it possible to get the page number and line number of particular text from doc/rtf/pdf in iPhone sdk?
Can QLPreviewController or UIDocumentInteractionController be of any help?
EDIT:
I am trying ...
2
votes
1answer
121 views
Python when catching exceptions, how I can get the line number?
I know there is another thread on this but it didn't solve my problem, please read my question!
Basically, I'm parsing a YAML file to ensure it has all the correct keys and values I want. If the YAML ...
2
votes
1answer
90 views
When comparing two files, how can I get the exact line number of changed locations?
I need to compare two source files and obtain the exact line number of changed statements. I used GNU diff and output in a unified format. However, this output only shows the changed chunk (identified ...
0
votes
1answer
24 views
Firefox - show line number on “function not defined”?
I need to track JS errors in browser, but when I run the function in FF I get 'function not defined' error. It does not give me a line number. It works in Chrome and maybe in IE too.
...
0
votes
6answers
98 views
Locating the line number where an exception occurs in python code
I have a code similar to this:
try:
if x:
statement1
statement2
statement3
elif y:
statement4
statement5
statement6
else:
raise
except:
...
0
votes
0answers
41 views
JSR223 + ScriptException + line number
Just a subtle question about JSR223 (scripting in Java). Where does it define that ScriptException.getLineNumber() returns a line number starting from 1, but a column number starting from 0? I don't ...
0
votes
2answers
108 views
How to find the line number of an error in a Makefile?
I am running the following command:
make -f makefile.gcc
And the output is:
make: -c: Command not found
How can I find out which line is causing the error? The makefile is hundreds of ...