[IR] Make some fields of ProcAttributes.t immutable

Summary: Nothing mutates those fields so there is no need to make them `mutable`

Reviewed By: cristianoc

Differential Revision: D4009166

fbshipit-source-id: b840a4b
master
Andrzej Kotulski 8 years ago committed by Facebook Github Bot
parent 2deeb3673a
commit 1713378438

@ -33,12 +33,12 @@ type t = {
const_formals: list int, /** list of indices of formals that are const-qualified */
func_attributes: list PredSymb.func_attribute,
is_abstract: bool, /** the procedure is abstract */
mutable is_bridge_method: bool, /** the procedure is a bridge method */
is_bridge_method: bool, /** the procedure is a bridge method */
is_defined: bool, /** true if the procedure is defined, and not just declared */
is_objc_instance_method: bool, /** the procedure is an objective-C instance method */
is_cpp_instance_method: bool, /** the procedure is an C++ instance method */
is_java_synchronized_method: bool, /** the procedure is a Java synchronized method */
mutable is_synthetic_method: bool, /** the procedure is a synthetic method */
is_synthetic_method: bool, /** the procedure is a synthetic method */
language: Config.language, /** language of the procedure */
loc: Location.t, /** location of this procedure in the source code */
mutable locals: list (Mangled.t, Typ.t), /** name and type of local variables */

@ -27,12 +27,12 @@ type t = {
const_formals: list int, /** list of indices of formals that are const-qualified */
func_attributes: list PredSymb.func_attribute,
is_abstract: bool, /** the procedure is abstract */
mutable is_bridge_method: bool, /** the procedure is a bridge method */
is_bridge_method: bool, /** the procedure is a bridge method */
is_defined: bool, /** true if the procedure is defined, and not just declared */
is_objc_instance_method: bool, /** the procedure is an objective-C instance method */
is_cpp_instance_method: bool, /** the procedure is an C++ instance method */
is_java_synchronized_method: bool, /** the procedure is a Java synchronized method */
mutable is_synthetic_method: bool, /** the procedure is a synthetic method */
is_synthetic_method: bool, /** the procedure is a synthetic method */
language: Config.language, /** language of the procedure */
loc: Location.t, /** location of this procedure in the source code */
mutable locals: list (Mangled.t, Typ.t), /** name and type of local variables */

Loading…
Cancel
Save