]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/m2/gm2-compiler/M2Students.def
Update copyright years.
[thirdparty/gcc.git] / gcc / m2 / gm2-compiler / M2Students.def
CommitLineData
1eee94d3
GM
1(* M2Students.def checks for new programmer errors.
2
a945c346 3Copyright (C) 2001-2024 Free Software Foundation, Inc.
1eee94d3
GM
4Contributed by Gaius Mulley <gaius.mulley@southwales.ac.uk>.
5
6This file is part of GNU Modula-2.
7
8GNU Modula-2 is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 3, or (at your option)
11any later version.
12
13GNU Modula-2 is distributed in the hope that it will be useful, but
14WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GNU Modula-2; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. *)
21
22DEFINITION MODULE M2Students ;
23
24(*
25 Title : M2Students
26 Author : Gaius Mulley
27 System : UNIX (gm2)
28 Date : Wed Nov 27 22:11:22 1996
29 Description: checks for new programmer errors.
30*)
31
32FROM SYSTEM IMPORT ADDRESS ;
33FROM NameKey IMPORT Name ;
34EXPORT QUALIFIED StudentVariableCheck, CheckForVariableThatLooksLikeKeyword ;
35
36
37(*
38 CheckForVariableThatLooksLikeKeyword - checks for a identifier that looks the same
39 as a keyword except for its case.
40*)
41
42PROCEDURE CheckForVariableThatLooksLikeKeyword (name: Name) ;
43
44
45(*
46 StudentVariableCheck - checks to see that variables are quite different from keywords and
47 issues an message if they are not. It ignores case so to catch
48 1st and 2nd semester programming errors.
49*)
50
51PROCEDURE StudentVariableCheck ;
52
53
54END M2Students.