Files
mercury/tests/debugger/breakpoints.a.m
Zoltan Somogyi da102c25e5 When printing the list of procedures in a module, allow the module name
Estimated hours taken: 1
Branches: main

trace/mercury_trace_tables.c:
	When printing the list of procedures in a module, allow the module name
	to be specified by a nickname (a less than fully qualified name).

tests/debugger/breakpoints.{a.m,inp,exp*}:
	Test the new capability.
2005-01-17 04:29:31 +00:00

13 lines
182 B
Mathematica

:- module breakpoints__a.
:- interface.
:- include_module breakpoints__a__testmod.
:- import_module breakpoints__a__testmod.
:- func afunc = int.
:- implementation.
afunc = 42.