Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UCSC CMPS117] Changes to intellij-haxe to support column numbers #475

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
debug="true"
source="1.6"
target="1.6"
includedestclasses="false"
includedestclasses="true"
createmissingpackageinfoclass="false"
includeantruntime="false" >

Expand Down Expand Up @@ -125,4 +125,3 @@
</target>

</project>

8 changes: 4 additions & 4 deletions hxcpp-debugger-protocol/src/JavaProtocol.hx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class JavaProtocol
return IdCompacted;
case Collected(bytesBefore, a):
return IdCollected;
case ThreadLocation(number, s, c, f, fi, l):
case ThreadLocation(number, s, c, f, fi, l, columnNumber):
return IdThreadLocation;
case FileLineBreakpointNumber(number):
return IdFileLineBreakpointNumber;
Expand All @@ -143,7 +143,7 @@ class JavaProtocol
return IdThreadTerminated;
case ThreadStarted(number):
return IdThreadStarted;
case ThreadStopped(number, s, c, f, fi, l):
case ThreadStopped(number, s, c, f, fi, l, columnNumber):
return IdThreadStopped;
}
}
Expand All @@ -163,9 +163,9 @@ class JavaProtocol
var stdout = untyped __java__('System.out');
HaxeProtocol.writeMessage(new OutputAdapter(stdout),
Message.ThreadsWhere
(Where(0, Running,
(Where(0, Running,
Frame(true, 0, "h", "i", "p",
10, Terminator),
10, 10, Terminator),
Terminator)));
Sys.stderr().writeString("Reading message\n");
var msg = readMessage(untyped __java__('System.in'));
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading