Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pygments/lexers/_luau_builtins.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1""" 

2 pygments.lexers._luau_builtins 

3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 

4 

5 Includes the builtins for Luau and Roblox. 

6 

7 :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. 

8 :license: BSD, see LICENSE for details. 

9""" 

10 

11LUAU_BUILTINS = { 

12 'bit32', 

13 'buffer', 

14 'coroutine', 

15 'debug', 

16 'math', 

17 'os', 

18 'string', 

19 'table', 

20 'utf8', 

21} 

22 

23ROBLOX_BUILTINS = { 

24 'task', 

25 

26 'Axes', 

27 'BrickColor', 

28 'CatalogSearchParams', 

29 'CFrame', 

30 'Color3', 

31 'ColorSequence', 

32 'ColorSequenceKeypoint', 

33 'DateTime', 

34 'DockWidgetPluginGuiInfo', 

35 'Faces', 

36 'FloatCurveKey', 

37 'Font', 

38 'Instance', 

39 'NumberRange', 

40 'NumberSequence', 

41 'NumberSequenceKeypoint', 

42 'OverlapParams', 

43 'PathWaypoint', 

44 'PhysicalProperties', 

45 'Random', 

46 'Ray', 

47 'RaycastParams', 

48 'RaycastResult', 

49 'RBXScriptConnection', 

50 'RBXScriptSignal', 

51 'Rect', 

52 'Region3', 

53 'Region3int16', 

54 'SharedTable', 

55 'TweenInfo', 

56 'UDim', 

57 'UDim2', 

58 'Vector2', 

59 'Vector2int16', 

60 'Vector3', 

61 'Vector3int16', 

62}