Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7541339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:51:59+00:00 2026-05-30T07:51:59+00:00

It is possible to get current line number by __LINE__ in Ruby or Perl.

  • 0

It is possible to get current line number by __LINE__ in Ruby or Perl.
For example:

print "filename: #{__FILE__}, line: #{__LINE__}"

Is there the same feature in Groovy?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T07:52:01+00:00Added an answer on May 30, 2026 at 7:52 am

    Not directly, but you can get it through an Exception (or Throwable) stack trace. For example:

     StackTraceElement getStackFrame(String debugMethodName) {
         def ignorePackages = [
             'sun.',
             'java.lang',
             'org.codehaus',
             'groovy.lang'
         ]
         StackTraceElement frame = null
         Throwable t = new Throwable()
         t.stackTrace.eachWithIndex { StackTraceElement stElement, int index ->
             if (stElement.methodName.contains(debugMethodName)) {
                 int callerIndex = index + 1
                 while (t.stackTrace[callerIndex].isNativeMethod() ||
                        ignorePackages.any { String packageName ->
                            t.stackTrace[callerIndex].className.startsWith(packageName)
                        }) {
                     callerIndex++
                 }
                 frame = t.stackTrace[callerIndex]
                 return
             }
         }
         frame
     }
    
     int getLineNumber() {
         getStackFrame('getLineNumber')?.lineNumber ?: -1
     }
    
     String getFileName() {
         getStackFrame('getFileName')?.fileName
     }
    
     String getMethodName() {
         getStackFrame('getMethodName')?.methodName
     }
    
     def foo() {
         println "looking at $fileName:$lineNumber ($methodName)"
     }
    
     foo()
    
     // ==> looking at test.groovy:39 (foo)
    

    A word of caution though: getting the line number, file name, or method like this is very slow.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to get the current source line number in Perl? The equivalent
Is it possible via the command line to get the current open tab url
I was wondering if it is possible to get the number of the line
i have a question about how to get the current line number while compiling
is it possible to get the current max-value of a column, only knowing tableID
Over in this question, Scott writes that it is possible to get the current
In .NET is it possible to get the HttpContext of the current page from
Does any one know if its possible to animate app.current.mainwindow.width so that you get
Is it possible to get the current output of the console in any form?
\n - is a new line in java, is it possible to get to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.