@@ -381,52 +381,52 @@ class BuiltinFunctionObject extends BuiltinCallable {
381381}
382382
383383/** DEPRECATED -- Use `Object::builtin("apply")` instead. */
384- Object theApplyFunction ( ) {
384+ deprecated Object theApplyFunction ( ) {
385385 result = Object:: builtin ( "apply" )
386386}
387387
388388/** DEPRECATED -- Use `Object::builtin("hasattr")` instead. */
389- Object theHasattrFunction ( ) {
389+ deprecated Object theHasattrFunction ( ) {
390390 result = Object:: builtin ( "hasattr" )
391391}
392392
393393/** DEPRECATED -- Use `Object::builtin("len")` instead. */
394- Object theLenFunction ( ) {
394+ deprecated Object theLenFunction ( ) {
395395 result = Object:: builtin ( "len" )
396396}
397397
398398/** DEPRECATED -- Use `Object::builtin("format")` instead. */
399- Object theFormatFunction ( ) {
399+ deprecated Object theFormatFunction ( ) {
400400 result = Object:: builtin ( "format" )
401401}
402402
403403/** DEPRECATED -- Use `Object::builtin("open")` instead. */
404- Object theOpenFunction ( ) {
404+ deprecated Object theOpenFunction ( ) {
405405 result = Object:: builtin ( "open" )
406406}
407407
408408/** DEPRECATED -- Use `Object::builtin("print")` instead. */
409- Object thePrintFunction ( ) {
409+ deprecated Object thePrintFunction ( ) {
410410 result = Object:: builtin ( "print" )
411411}
412412
413413/** DEPRECATED -- Use `Object::builtin("input")` instead. */
414- Object theInputFunction ( ) {
414+ deprecated Object theInputFunction ( ) {
415415 result = Object:: builtin ( "input" )
416416}
417417
418418/** DEPRECATED -- Use `Object::builtin("locals")` instead. */
419- Object theLocalsFunction ( ) {
419+ deprecated Object theLocalsFunction ( ) {
420420 result = Object:: builtin ( "locals" )
421421}
422422
423423/** DEPRECATED -- Use `Object::builtin("globals")()` instead. */
424- Object theGlobalsFunction ( ) {
424+ deprecated Object theGlobalsFunction ( ) {
425425 result = Object:: builtin ( "globals" )
426426}
427427
428428/** DEPRECATED -- Use `Object::builtin("sysExit()` instead. */
429- Object theExitFunctionObject ( ) {
429+ deprecated Object theExitFunctionObject ( ) {
430430 result = ModuleObject:: named ( "sys" ) .attr ( "exit" )
431431}
432432
0 commit comments