Skip to content
Commit a22703c2 authored by Jonathan Poelen's avatar Jonathan Poelen Committed by Christoph Cullmann
Browse files

ADA: fix folding on "null record" ; add digit separator, based numeral and keywords

- fix folding on `null record`

```ada
type Car is record -- beginRegion=RecordRegion
  -- .....
end record -- endRegion=RecordRegion
type Null_Record is null record;
-- Before                ~~~~~~ beginRegion=RecordRegion
-- After                 ~~~~~~ no region
```

- new highlight: Base, Exponent

```ada
   3#011201#e3
-- ^ Base
--   ^ Decimal
--         ^ Base
--          ^ Exponent

   3#0112401#e3
-- ^ Base
--   ^ Decimal
--       ^ Normal Text (4 is not valid in base 3)
```

BUG: 426377
parent 7df42d60
Pipeline #436086 passed with stage
in 2 minutes and 11 seconds
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment