aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/v3_kernel.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2015-11-30 13:06:35 +0100
committerHans Bolinder <[email protected]>2016-02-17 12:58:19 +0100
commit32d47fd2d4775df964c6b4d5ee77a8367ef27d67 (patch)
tree1581f61c8e47aa8cb82de30c9a560d6d2d23c474 /lib/compiler/src/v3_kernel.erl
parenta57f06ac6c2986feb14de0557d8051c8489788ee (diff)
downloadotp-32d47fd2d4775df964c6b4d5ee77a8367ef27d67.tar.gz
otp-32d47fd2d4775df964c6b4d5ee77a8367ef27d67.tar.bz2
otp-32d47fd2d4775df964c6b4d5ee77a8367ef27d67.zip
compiler: Update the compiler to handle typed record fields
Diffstat (limited to 'lib/compiler/src/v3_kernel.erl')
-rw-r--r--lib/compiler/src/v3_kernel.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/compiler/src/v3_kernel.erl b/lib/compiler/src/v3_kernel.erl
index 011748df3a..4446d5ff1d 100644
--- a/lib/compiler/src/v3_kernel.erl
+++ b/lib/compiler/src/v3_kernel.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 1999-2013. All Rights Reserved.
+%% Copyright Ericsson AB 1999-2015. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -143,8 +143,10 @@ attributes([]) -> [].
include_attribute(type) -> false;
include_attribute(spec) -> false;
+include_attribute(callback) -> false;
include_attribute(opaque) -> false;
include_attribute(export_type) -> false;
+include_attribute(record) -> false;
include_attribute(_) -> true.
function({#c_var{name={F,Arity}=FA},Body}, St0) ->