494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
|
case C is
when '(' | 'o' | 'O' =>
Entity := SE.Printers.Pretty.Opening;
Valid := True;
when ')' | 'c' | 'C' =>
Entity := SE.Printers.Pretty.Closing;
Valid := True;
when 'a' | 'A' | 'd' | 'D' =>
Entity := SE.Printers.Pretty.Atom_Data;
Valid := True;
when others =>
Valid := False;
end case;
end Parse;
|
|
|
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
|
case C is
when '(' | 'o' | 'O' =>
Entity := SE.Printers.Pretty.Opening;
Valid := True;
when ')' | 'c' | 'C' =>
Entity := SE.Printers.Pretty.Closing;
Valid := True;
when 'a' | 'A' | 'd' | 'D' | 'x' | 'X' =>
Entity := SE.Printers.Pretty.Atom_Data;
Valid := True;
when others =>
Valid := False;
end case;
end Parse;
|