You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
##Description
When a variable, constant, type or subprogram is declared, you can specify that it is to be pervasive, which means that it does not need to be explicitly imported into modules, monitors or classes in the current scope. The keyword pervasive can be abbreviated as an asterisk (*).
##Example
var pervasive counter : int % Short form: var * count : int
const * maxCounter : int := 100
procedure * p ( x : real )
�
end p
##Details
The keyword pervasive is also used in export lists along with the keyword unqualified. See export list for details.