dart-sdk/runtime/lib/regexp_jsc.h
2011-10-07 12:47:56 +00:00

26 lines
699 B
C++

// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef LIB_REGEXP_JSC_H_
#define LIB_REGEXP_JSC_H_
#include "vm/object.h"
namespace dart {
class Jscre : public AllStatic {
public:
static RawJSRegExp* Compile(const String& pattern,
bool multi_line,
bool ignore_case);
static RawArray* Execute(const JSRegExp& regex,
const String& str,
intptr_t index);
};
} // namespace dart
#endif // LIB_REGEXP_JSC_H_