Files
mercury/tests/debugger/breakpoints.b.testmod.m
Zoltan Somogyi 32d85a300f Add a table for the less-than-fully-qualified names of modules,
Estimated hours taken: 3
Branches: main

trace/mercury_trace_tables.m:
	Add a table for the less-than-fully-qualified names of modules,
	allowing any prefix of the module name to be omitted.

	Use it to allow procedure specifications (e.g. in breakpoint commands)
	to use such module names, with fully qualified module names taking
	precedence over less-than-fully-qualified module names.

tests/debugger/breakpoints.{m,inp,exp*}:
tests/debugger/breakpoints.print_list.m:
tests/debugger/breakpoints.{a,b}.m:
tests/debugger/breakpoints.{a,b}.testmod.m:
	Update this test case to test the new functionality.
2004-01-21 04:55:50 +00:00

12 lines
165 B
Mathematica

:- module breakpoints__b__testmod.
:- interface.
:- func test_in_b = string.
:- func test_in_ab = string.
:- implementation.
test_in_b = "b".
test_in_ab = "ab".