Changeset 29588 in webkit for trunk/JavaScriptCore/kjs/regexp_object.h
- Timestamp:
- Jan 17, 2008, 11:27:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.h
r27702 r29588 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 3 * Copyright (C) 2003, 2007 Apple Inc. All Rights Reserved.3 * Copyright (C) 2003, 2007, 2008 Apple Inc. All Rights Reserved. 4 4 * 5 5 * This library is free software; you can redistribute it and/or … … 32 32 public: 33 33 RegExpPrototype(ExecState*, ObjectPrototype*, FunctionPrototype*); 34 34 35 virtual const ClassInfo* classInfo() const { return &info; } 35 36 static const ClassInfo info; 36 };37 38 class RegExpProtoFunc : public InternalFunctionImp {39 public:40 enum { Compile, Exec, Test, ToString };41 42 RegExpProtoFunc(ExecState*, FunctionPrototype*, int id, int len, const Identifier&);43 virtual JSValue* callAsFunction(ExecState*, JSObject*, const List&);44 45 private:46 int id;47 37 }; 48 38
Note:
See TracChangeset
for help on using the changeset viewer.