File: underscores.yo

package info (click to toggle)
bisonc%2B%2B 6.09.02-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,984 kB
  • sloc: cpp: 9,375; ansic: 1,505; fortran: 1,134; makefile: 1,062; sh: 526; yacc: 84; lex: 60
file content (30 lines) | stat: -rw-r--r-- 1,247 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
    Starting with version 6.02.00 b() reserved identifiers no longer end
    in two underscore characters, but in one. This modification was necessary
    because according to the bf(C++) standard identifiers having two or more
    consecutive underscore characters are reserved by the language. In
    practice this could require some minor modifications of existing source
    files using b()'s facilities, most likely limited to changing tt(Tokens__)
    into tt(Tokens_) and changing tt(Meta__) into tt(Meta_).

The complete list of affected names is:
    description(
    dit(Enums:) quote(
DebugMode_, ErrorRecovery_, Return_, Tag_, Tokens_
)
    dit(Enums values:) quote(
PARSE_ABORT_, PARSE_ACCEPT_, UNEXPECTED_TOKEN_, sizeofTag_
)
    dit(Type / namespace designators:) quote(
Meta_, PI_, STYPE_
)
    dit(Member functions:) quote(
clearin_, errorRecovery_, errorVerbose_, executeAction_, lex_, 
lookup_, nextCycle_, nextToken_, popToken_, pop_, print_, 
pushToken_, push_, recovery_, redoToken_, reduce_, savedToken_, 
shift_, stackSize_, startRecovery_, state_, token_, top_, vs_,
)
    dit(Protected data members:) quote(
d_acceptedTokens_, d_actionCases_, d_debug_, d_nErrors_,
d_requiredTokens_, d_val_, idOfTag_, s_nErrors_
)
    )