Show LineNumbers in the Debugger - Is this possible?

Is it possible for the Debugger to display line numbers for the CLW’s & Inc’s?

It shows the line number in Assert() messages.

Using this post build statement taken from here: Get Compiler Version & Build Config for use in a PostCompile Build action - #3 by brahn

ECHO "$(SharpDevelopBinPath)" && ECHO "$(Configuration)" && ECHO "$(MSBuildProjectFile)" && ECHO "$(Platform)" && ECHO $(ProjectGuid) && ECHO "$(DefineConstants)" && ECHO "$(ClarionBinPath)" && ECHO Version="$(clarion_version)" && ECHO Model="$(Model)" && ECHO Vid="$(vid)" && ECHO Warnings="$(warnings)"  && ECHO CPU="$(cpu)" && ECHO LineNumbers="$(line_numbers)" && ECHO MapFile="$(GenerateMap)" && ECHO CheckStack="$(check_stack)" && ECHO CheckIndex="$(check_index)" && ECHO StackSize="$(stack_size)" && ECHO Defines="$(DefineConstants)" && ECHO Includes="@(Include)" && ECHO References="@(Reference);@(ProjectReference)" && ECHO Sections="$(Configuration)" && ECHO Sources="@(Compile)" && ECHO Libraries="@(Library)" && ECHO FileDrivers="@(FileDriver)" && ECHO Icon="$(ApplicationIcon)" && ECHO TargetName="$(OutputName)" && ECHO TargetDir="$(OutputPath)" && ECHO TargetType="$(OutputType)" && ECHO RedirectionFile="$(RedFile)" && ECHO CopyCoreFiles="$(CopyCore)" && ECHO CopyableFiles="@(None)" && ECHO ConfigDir="$(ConfigDir)" && ECHO ProjectName="$(MSBuildProjectFile)" && ECHO NoDependency="$(NoDependency)" && ECHO Signal="$(Signal)"

I can see in the Output pad - set to Build that Linenumbers is set to True.

Build started…

Making ClaDebugProcess.exe
ECHO "C:\Clarion11\bin" && ECHO "Debug" && ECHO "ClaDebugProcess.cwproj" && ECHO "Win32" && ECHO {6EB4F109-CDD8-4844-999D-03EB4C03C8C0} && ECHO "vid=>on;proc_trace =>on" && ECHO "C:\Clarion11\bin" && ECHO Version="" && ECHO Model="" && ECHO Vid="full" && ECHO Warnings="on"  && ECHO CPU="" && ECHO LineNumbers="True" && ECHO MapFile="True" && ECHO CheckStack="True" && ECHO CheckIndex="True" && ECHO StackSize="16384" && ECHO Defines="vid=>on;proc_trace =>on" && ECHO Includes="" && ECHO References=";" && ECHO Sections="Debug" && ECHO Sources="ClaDebugProcess.clw" && ECHO Libraries="" && ECHO FileDrivers="" && ECHO Icon="" && ECHO TargetName="ClaDebugProcess" && ECHO TargetDir="" && ECHO TargetType="Exe" && ECHO RedirectionFile="" && ECHO CopyCoreFiles="True" && ECHO CopyableFiles="" && ECHO ConfigDir="C:\Users\Admin1\AppData\Roaming\SoftVelocity\Clarion\11.0" && ECHO ProjectName="ClaDebugProcess.cwproj" && ECHO NoDependency="" && ECHO Signal="ClarionSemb0ee30dc-e881-4558-86a1-30bdf76a6df8"
"C:\Clarion11\bin" 
"Debug" 
"ClaDebugProcess.cwproj" 
"Win32" 
{6EB4F109-CDD8-4844-999D-03EB4C03C8C0} 
"vid=>on;proc_trace =>on" 
"C:\Clarion11\bin" 
Version="" 
Model="" 
Vid="full" 
Warnings="on"  
CPU="" 
LineNumbers="True" 
MapFile="True" 
CheckStack="True" 
CheckIndex="True" 
StackSize="16384" 
Defines="vid=>on;proc_trace =>on" 
Includes="" 
References=";" 
Sections="Debug" 
Sources="ClaDebugProcess.clw" 
Libraries="" 
FileDrivers="" 
Icon="" 
TargetName="ClaDebugProcess" 
TargetDir="" 
TargetType="Exe" 
RedirectionFile="" 
CopyCoreFiles="True" 
CopyableFiles="" 
ConfigDir="C:\Users\Admin1\AppData\Roaming\SoftVelocity\Clarion\11.0" 
ProjectName="ClaDebugProcess.cwproj" 
NoDependency="" 
Signal="ClarionSemb0ee30dc-e881-4558-86a1-30bdf76a6df8"
Build Finished Successfully.

I can see the LineNumber in the Window Title for the CLW. eg.
C:\ClaDebugProcess\ClaDebugPRocess.clw () L:91 of 135.
but I cant see any line numbers in a left hand column, is this even possible?

TIA