Changeset 1024 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Apr 15, 2002, 4:43:21 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r798 r1024 20 20 * Boston, MA 02111-1307, USA. 21 21 * 22 * $Id$23 22 */ 24 23 … … 115 114 * interpreter has a global object which is used for the purposes of code 116 115 * evaluation, and also provides access to built-in properties such as 117 " Object" and "Number".116 * " Object" and "Number". 118 117 */ 119 118 class Interpreter { … … 149 148 Object globalObject() const; 150 149 150 void initGlobalObject(); 151 151 152 /** 152 153 * Returns the execution state object which can be used to execute … … 205 206 Object builtinObject() const; 206 207 207 /** Returns the builtin "Function" object. */ 208 /** 209 * Returns the builtin "Function" object. 210 */ 208 211 Object builtinFunction() const; 209 212 210 /** Returns the builtin "Array" object. */ 213 /** 214 * Returns the builtin "Array" object. 215 */ 211 216 Object builtinArray() const; 212 217 213 218 214 /** Returns the builtin "Boolean" object. */ 219 /** 220 * Returns the builtin "Boolean" object. 221 */ 215 222 Object builtinBoolean() const; 216 223 217 /** Returns the builtin "String" object. */ 224 /** 225 * Returns the builtin "String" object. 226 */ 218 227 Object builtinString() const; 219 228 220 /** Returns the builtin "Number" object. */ 229 /** 230 * Returns the builtin "Number" object. 231 */ 221 232 Object builtinNumber() const; 222 233 223 /** Returns the builtin "Date" object. */ 234 /** 235 * Returns the builtin "Date" object. 236 */ 224 237 Object builtinDate() const; 225 238 226 /** Returns the builtin "RegExp" object. */ 239 /** 240 * Returns the builtin "RegExp" object. 241 */ 227 242 Object builtinRegExp() const; 228 243 229 /** Returns the builtin "Error" object. */ 244 /** 245 * Returns the builtin "Error" object. 246 */ 230 247 Object builtinError() const; 231 248 232 /** Returns the builtin "Object.prototype" object. */ 249 /** 250 * Returns the builtin "Object.prototype" object. 251 */ 233 252 Object builtinObjectPrototype() const; 234 253 235 /** Returns the builtin "Function.prototype" object. */ 254 /** 255 * Returns the builtin "Function.prototype" object. 256 */ 236 257 Object builtinFunctionPrototype() const; 237 258 238 /** Returns the builtin "Array.prototype" object. */ 259 /** 260 * Returns the builtin "Array.prototype" object. 261 */ 239 262 Object builtinArrayPrototype() const; 240 263 241 /** Returns the builtin "Boolean.prototype" object. */ 264 /** 265 * Returns the builtin "Boolean.prototype" object. 266 */ 242 267 Object builtinBooleanPrototype() const; 243 268 244 /** Returns the builtin "String.prototype" object. */ 269 /** 270 * Returns the builtin "String.prototype" object. 271 */ 245 272 Object builtinStringPrototype() const; 246 273 247 /** Returns the builtin "Number.prototype" object. */ 274 /** 275 * Returns the builtin "Number.prototype" object. 276 */ 248 277 Object builtinNumberPrototype() const; 249 278 250 /** Returns the builtin "Date.prototype" object. */ 279 /** 280 * Returns the builtin "Date.prototype" object. 281 */ 251 282 Object builtinDatePrototype() const; 252 283 253 /** Returns the builtin "RegExp.prototype" object. */ 284 /** 285 * Returns the builtin "RegExp.prototype" object. 286 */ 254 287 Object builtinRegExpPrototype() const; 255 288 256 /** Returns the builtin "Error.prototype" object. */ 289 /** 290 * Returns the builtin "Error.prototype" object. 291 */ 257 292 Object builtinErrorPrototype() const; 258 293 259 /** The initial value of "Error" global property */ 294 /** 295 * The initial value of "Error" global property 296 */ 260 297 Object builtinEvalError() const; 261 298 Object builtinRangeError() const; … … 318 355 */ 319 356 Interpreter operator=(const Interpreter&); 357 protected: 358 virtual void virtual_hook( int id, void* data ); 320 359 }; 321 360
Note:
See TracChangeset
for help on using the changeset viewer.