mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-05-01 17:24:34 +00:00
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.
13 lines
182 B
Mathematica
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.
|