This file is indexed.

/usr/include/thunderbird/JSStreamWriter.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef JSSTREAMWRITER_H
#define JSSTREAMWRITER_H

#include <ostream>
#include <stdlib.h>
#include "nsDeque.h"

class JSStreamWriter
{
public:
  explicit JSStreamWriter(std::ostream& aStream);
  ~JSStreamWriter();

  void BeginObject();
  void EndObject();
  void BeginArray();
  void EndArray();
  void Name(const char *name);
  void Value(int value);
  void Value(unsigned value);
  void Value(double value);
  void Value(const char *value, size_t valueLength);
  void Value(const char *value);
  template <typename T>
  void NameValue(const char *aName, T aValue)
  {
    Name(aName);
    Value(aValue);
  }

private:
  std::ostream& mStream;
  bool mNeedsComma;
  bool mNeedsName;

  nsDeque mStack;

  // This class can't be copied
  JSStreamWriter(const JSStreamWriter&);
  JSStreamWriter& operator=(const JSStreamWriter&);

  void* operator new(size_t);
  void* operator new[](size_t);
  void operator delete(void*) {
    // Since JSStreamWriter has a virtual destructor the compiler
    // has to provide a destructor in the object file that will call
    // operate delete in case there is a derived class since its
    // destructor won't know how to free this instance.
    abort();
  }
  void operator delete[](void*);
};

#endif