~ubuntu-branches/ubuntu/trusty/libv8/trusty

« back to all changes in this revision

Viewing changes to src/jsregexp.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-02-20 14:08:17 UTC
  • mfrom: (15.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20120220140817-bsvmeoa4sxsj5hbz
Tags: 3.7.12.22-3
Fix mipsel build, allow test debug-step-3 to fail (non-crucial)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright 2006-2008 the V8 project authors. All rights reserved.
 
1
// Copyright 2011 the V8 project authors. All rights reserved.
2
2
// Redistribution and use in source and binary forms, with or without
3
3
// modification, are permitted provided that the following conditions are
4
4
// met:
29
29
#define V8_JSREGEXP_H_
30
30
 
31
31
#include "allocation.h"
 
32
#include "assembler.h"
32
33
#include "zone-inl.h"
33
34
 
34
35
namespace v8 {
388
389
    typedef uc16 Key;
389
390
    typedef Entry Value;
390
391
    static const uc16 kNoKey;
391
 
    static const Entry kNoValue;
 
392
    static const Entry NoValue() { return Value(); }
392
393
    static inline int Compare(uc16 a, uc16 b) {
393
394
      if (a == b)
394
395
        return 0;