/ LJCJSCodeDoc / LJCCommonLib / LJC / Location


Parameters
className - The current class name.
methodName - The current method name.
valueName - The debug value name.

Returns

The debug location text.

Syntax

JavaScript
static Location(className, methodName, valueName)

Creates the debug location text.

Example

JavaScript
// Creates the debug location text.
Location()
{
  const className = "Class";
  const methodName = "Method()";
  const valueName = "value";
  const result = LJC.Location(className, methodName, valueName);

  // result
  // Class.Method() value:
}

Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.